is there a command in matlab for waiting
Mostra commenti meno recenti
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
Risposta accettata
Più risposte (4)
Rick Rosson
il 9 Set 2011
if isempty(result)
...
else
...
end
4 Commenti
Walter Roberson
il 9 Set 2011
No, an empty matrix still exists!
Rick Rosson
il 9 Set 2011
Maybe. But a matrix that does not exist will return |true| from the |isempty| function.
Walter Roberson
il 9 Set 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
il 9 Set 2011
Yes, you are right. This solution will not work.
Oleg Komarov
il 9 Set 2011
1 voto
Rick Rosson
il 9 Set 2011
Alternatively:
if exist('result','var')
...
else
...
end
HTH.
Rick
Categorie
Scopri di più su Creating, Deleting, and Querying Graphics Objects in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!