symbolic variable - proving positive
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Gennaro Arguzzi
il 30 Giu 2017
Modificato: Walter Roberson
il 30 Giu 2017
Hi everyone. How can I prove that a symbolic variable is positive? It is not possible to use if statement for symbolic variables.
close all
clear all
a=sym('a','positive');
if(a>0)
disp('OK')
else
disp('KO')
end
Thank you.
0 Commenti
Risposta accettata
Walter Roberson
il 30 Giu 2017
Modificato: Walter Roberson
il 30 Giu 2017
syms a positive
if isAlways(a>0); disp('OK'); else disp('KO'); end
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Assumptions in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!