Simplify Matrix decimal to integers
Mostrar comentarios más antiguos
I do not want
881/2158 985/1393 780/1351
881/2158 -985/1393 780/1351
-881/1079 0 780/1351
But I want
1 1 1
1 -1 1
-2 0 1
How do I do this using one single function ?
I get this error if I use simplify
Check for incorrect argument data type or missing argument in call to function 'simplify'.
Respuestas (2)
Alan Stevens
el 19 de Oct. de 2021
Editada: Alan Stevens
el 19 de Oct. de 2021
One way is
M = [881/2158 985/1393 780/1351
881/2158 -985/1393 780/1351
-881/1079 0 780/1351]
ip = find(M>=0);
in = find(M<0);
M(ip) = ceil(M(ip));
M(in) = floor(M(in));
disp(M)
Don't know where you got the -2 from though!
1 comentario
Shaunak Bagade
el 19 de Oct. de 2021
Cris LaPierre
el 19 de Oct. de 2021
Editada: Cris LaPierre
el 19 de Oct. de 2021
It's likely going to take two functions: one to convert your symbolic expressions to numeric, and a second to round.
I would probably do something like
new_var = round(double(old_var))
5 comentarios
Shaunak Bagade
el 19 de Oct. de 2021
Cris LaPierre
el 19 de Oct. de 2021
You say you are getting an error message, so you must have code already. Please share what you have tried.
M = [881/2158 985/1393 780/1351
881/2158 -985/1393 780/1351
-881/1079 0 780/1351];
B = M./M(1,:)
Or you could normalize by the first element in each column.
M = [881/2158 985/1393 780/1351
881/2158 -985/1393 780/1351
-881/1079 0 780/1351];
B = normalize(M, 1, 'scale', 'first') % Normalize in dimension 1
Shaunak Bagade
el 19 de Oct. de 2021
Editada: Shaunak Bagade
el 22 de Oct. de 2021
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!