is there a command in matlab for waiting
Show older comments
its needed sometimes matlab do nothing and not going next command line, till a specified thing happens.for example:
clc
clear all
g=[];
plot(r,'YDataSource','r');ylim([0 y1]);Xlim([0 x1])%r is a defined matrix
-(now after plotting, i want make a matrix in 'result' name manually but since now this matrix isn't defined so i need matlab wait here till i defined it)
if 'rezult' not exist
wait
end
for i=1:10
g=[g;result(i,i+1)] %if didn't wait, errors for defining of 'result'
end
Accepted Answer
More Answers (4)
Rick Rosson
on 9 Sep 2011
if isempty(result)
...
else
...
end
4 Comments
Walter Roberson
on 9 Sep 2011
No, an empty matrix still exists!
Rick Rosson
on 9 Sep 2011
Maybe. But a matrix that does not exist will return |true| from the |isempty| function.
Walter Roberson
on 9 Sep 2011
I really think you need to test that, Rick. I think you will find that instead MATLAB will error out for trying to use an undefined variable.
Perhaps you are being influenced by the fact that persistent variables and global variables will be empty matrices until some other value is assigned to them?
Rick Rosson
on 9 Sep 2011
Yes, you are right. This solution will not work.
Oleg Komarov
on 9 Sep 2011
1 vote
Rick Rosson
on 9 Sep 2011
Alternatively:
if exist('result','var')
...
else
...
end
HTH.
Rick
Categories
Find more on Creating, Deleting, and Querying Graphics Objects 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!