Using if function for 'for statement'

조회 수: 1 (최근 30일)
Gokay Karatas
Gokay Karatas 2019년 10월 11일
답변: KALYAN ACHARJYA 2019년 10월 11일
Hello everyone,
I have defined X values between 0 to 3 by steps of 0.1, and function is working for each statement, and for each values I have get .mat files as results for the post processing.
However, I need some help to make the code a bit more smarter like if there is negative values in .mat files, matlab should stop to operate. Is it possible put if in for function?

답변 (1개)

KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 10월 11일
X=0:0.1:3;
% Define X as per requirements
for i=1:length(X)
if X(i)<0
break;
else
% do operation to get mat file for X(i);
% as you mentioned in the question
end
end

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by