Use flowchart for Matlab
Mostra commenti meno recenti

I am trying to write a script named as tstdigit.m using this flow chart
so far all I have is:
>> a = input('please enter a: ');
please enter a: if a > 0
if a > 0
1 Commento
KALYAN ACHARJYA
il 7 Nov 2018
Risposte (2)
KALYAN ACHARJYA
il 7 Nov 2018
Modificato: KALYAN ACHARJYA
il 7 Nov 2018
% Try to learn, as you have shared, what you have done, that's why I have posted the answer.
% try to learn, learn by doing
a=input('Input a: Enter the number ');
if a<0
disp('Nagative Value');
else
if a<10
disp('Single Digit');
else
disp('Out of range');
end
end
8 Commenti
KALYAN ACHARJYA
il 7 Nov 2018
Modificato: KALYAN ACHARJYA
il 7 Nov 2018
Above code is according to the flow of the diagram, another way you can implement the same logic with single if else statement
a=input('Input a: Enter the number ');
if a<0
disp('Nagative Value');
elseif a<10
disp('Single Digit');
else
disp('Out of range');
end
KALYAN ACHARJYA
il 7 Nov 2018
Modificato: KALYAN ACHARJYA
il 7 Nov 2018
And for a=10, the logic is not provided in the flowchart.
SP
il 7 Nov 2018
KALYAN ACHARJYA
il 7 Nov 2018
no, show me the results
Shamsher Ansari
il 21 Apr 2020
Kalyan sir, Thank you
but how I can Become like you a Matlab Programmer
please suggest me
KALYAN ACHARJYA
il 21 Apr 2020
Modificato: KALYAN ACHARJYA
il 21 Apr 2020
Oh, I am also learner here, Just practice..repeat ..practice
See the answers provided by members and start here
Good Wishes!
Shamsher Ansari
il 21 Apr 2020
Modificato: Shamsher Ansari
il 21 Apr 2020
Thank you sir,
Please sir, reply to my question on the above problem with small modification" .....what change will be in the program,,,,please sir...........(at "input a" suppose there is some calculation and i want to repeat it to some extent to achieve a perticular result)

KALYAN ACHARJYA
il 21 Apr 2020
while condition
% Previous code
end
Till the condition not met it iterative continlusly, please ensure that once condition must be met, otherwise it will run infinitely.
Aatif Ameer
il 26 Dic 2020
0 voti
Can anyone solve the problem, i am attaching it with the ques. please convert flow chat into matlab code.
1 Commento
KALYAN ACHARJYA
il 26 Dic 2020
Please read here
Categorie
Scopri di più su Aerospace Applications 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!