how to modify displayed result

2 visualizaciones (últimos 30 días)
Opariuc Andrei
Opariuc Andrei el 9 de Nov. de 2020
Comentada: Rik el 9 de Nov. de 2020
so i've got my code all functioning and all,how can i get matlab do display/calculate the divisions from sol (solution)? if possible i would like more response variants
  2 comentarios
Rik
Rik el 9 de Nov. de 2020
It looks like you need to either set format to something else, or use double to convert the result. Without being able to copy and run your code it I can't tell which it is.
Opariuc Andrei
Opariuc Andrei el 9 de Nov. de 2020
%% Input data
m1=2; m2=2.5; m3=3; k1=10; k2=15; k3=20; g=9.81;
%% calculus
syms x1 x2 x3
[A,b]=equationsToMatrix([m1*g+k2*(x2-x1)-k1*x1 m2*g+k3*(x3-x2)+k2*(x1-x2) m3*g+k3*(x2-x3)],[x1 x2 x3]);
sol=A\b

Iniciar sesión para comentar.

Respuesta aceptada

Rik
Rik el 9 de Nov. de 2020
%% Input data
m1=2; m2=2.5; m3=3; k1=10; k2=15; k3=20; g=9.81;
%% calculus
syms x1 x2 x3
[A,b]=equationsToMatrix([m1*g+k2*(x2-x1)-k1*x1 m2*g+k3*(x3-x2)+k2*(x1-x2) m3*g+k3*(x2-x3)],[x1 x2 x3]);
sol=A\b
sol = 
sol_as_double=double(sol)
sol_as_double = 3×1
7.3575 10.9545 12.4260
  1 comentario
Rik
Rik el 9 de Nov. de 2020
There seems to something wrong with the display fractional output (the code running feature is still being tested). It is the same as what you posted, so the conversion to double should also work for you.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Numbers and Precision en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by