How to display result from solve ?

9 vues (au cours des 30 derniers jours)
Ole
Ole le 4 Fév 2020
Commenté : Ole le 4 Fév 2020
How to display the result form solve ?
x = @(y)(y^2-4); eqn =@(y) x(y)==0; syms y; S = vpasolve(eqn(y),y)
Xr2 = [' R2 = ',num2str(S(2),16)];
disp(Xr2)
Error using num2str (line 53)
Input to num2str must be numeric.

Réponse acceptée

KSSV
KSSV le 4 Fév 2020
iwant = double(S)
  1 commentaire
Ole
Ole le 4 Fév 2020
char(S(2)) also works

Connectez-vous pour commenter.

Plus de réponses (1)

fred  ssemwogerere
fred ssemwogerere le 4 Fév 2020
what are you trying to do here?
Xr2 = [' R2 = ',num2str(S(2),16)];
This should do nicely:
Xr2 = [' R2 = ',int2str(S(2))];
disp(Xr2)

Catégories

En savoir plus sur Mathematics dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by