Question about making a 4-line if statement into a single line
22 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hakyoon Kim
il 26 Ott 2022
Commentato: KALYAN ACHARJYA
il 26 Ott 2022
hello
first, here is my code
A=rand;
if A > 0.5
disp([num2str(A), ' ', 'Great indeed!'])
end
This is a code that generates a random number with 'rand' command and outputs 'Great indeed!' text if the value exceeds 0.5.
I want to make the code in single line but i have no idea.
Should I use 'switch' command or is there any better way?
Risposta accettata
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!