is there a command in matlab for waiting
이전 댓글 표시
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
채택된 답변
추가 답변 (4개)
Rick Rosson
2011년 9월 9일
if isempty(result)
...
else
...
end
댓글 수: 4
Walter Roberson
2011년 9월 9일
No, an empty matrix still exists!
Rick Rosson
2011년 9월 9일
Maybe. But a matrix that does not exist will return |true| from the |isempty| function.
Walter Roberson
2011년 9월 9일
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
2011년 9월 9일
Yes, you are right. This solution will not work.
Oleg Komarov
2011년 9월 9일
1 개 추천
Rick Rosson
2011년 9월 9일
Alternatively:
if exist('result','var')
...
else
...
end
HTH.
Rick
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!