Convert 0×1 empty double column vector to zero
72 views (last 30 days)
Show older comments
Zeynab Mousavikhamene
on 30 Aug 2019
Commented: Corinna
on 15 May 2024
I am running a code and some of the parameters are 0×1 empty double column vector. Is there any way to convert these to zero?
I mean isntead of daying empty double, assign zero.
2 Comments
James Tursa
on 30 Aug 2019
We need more details. Are you tring to change the behavior of a function or calculation that returns empty variables? Are you tring to change empty variables in the workspace to 0's? Are these empty variables part of a cell or struct array?
Accepted Answer
James Tursa
on 30 Aug 2019
Is this construct all you need?
if( isempty(x) )
x = 0;
end
5 Comments
James Tursa
on 31 Aug 2019
What is the calculation you are doing that is producing the empty variable?
More Answers (0)
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!