How to use one conditions's result in to another condition?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello. I am facing some problem with Matlab coding. I want:
if working_mode == 1
a = func_con(x);
save a;
else %%%Here, i want to use the value of "a"
a;
for i = 1:3
if a > 10
a = func_rep(a);
else break,
end
a;
end
end
How can i perform this operation? Any help will be appreciated. Thanks.
댓글 수: 0
답변 (2개)
Friedrich
2012년 2월 15일
Hi,
if a doesnt exist than you cant use it. But you can use ifempty to check if the variable a is filled with data, e.g.
a = [];
if working_mode == 1
a = func_con(x);
save a;
else %%%Here, i want to use the value of "a"
if ~isempty(a)
a;
for i = 1:3
if a > 10
a = func_rep(a);
else break,
end
a;
end
else
disp('a doesnt contain data')
end
end
댓글 수: 2
Friedrich
2012년 2월 15일
You have to declare a like i did. the variable a must be known. So write a = [] somewhere at the beginning of your code.
David
2012년 2월 15일
You can also use
exist(a,'var')
to check if a variable exists in the current workspace
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Downloads에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!