Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Make graph plot wait until error checking is done

조회 수: 3 (최근 30일)
jake harris
jake harris 2018년 11월 9일
마감: madhan ravi 2018년 11월 9일
if x1 > x2
while Start > x2
disp(['The Start value must be less than: ', num2str(x2)]);
Start = input('Please, input a Start value of x: ')
end
while End < x1
disp(['The End value must be greater than: ', num2str(x1)]);
End = input('Please, input an End value of x: ')
end
elseif x2 >x1
while Start > x1
disp(['The Start value must be less than: ', num2str(x1)]);
Start = input('Please, input a Start value of x: ')
end
while End < x2
disp(['The End value must be greater than: ', num2str(x2)]);
End = input('Please, input an End value of x: ')
end
end
^
|
This bit is includes the plot axis etc.
|
v
end
How do i get the plot to wait until the first section is done??

답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by