Asterisk appearing during row operation
36 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ikenna Iwudike
el 22 de Oct. de 2022
Comentada: Steven Lord
el 22 de Oct. de 2022
When I'm doing row operations on matlab, and i'm trying to make a number zero, an asterisk appears. I dont know why this is.
format rat
B = [-6 8 -9 4 ;4 -3 5 7 ;-9 7 -8 -8 ;4 -3 3 3 ]
B(1,:) = B(1,:)/-6
B(2,:) = B(1,:)*-4 + B(2,:)
B(3,:) = B(1,:)*9 + B(3,:)
B(4,:) = B(1,:)*-4 + B(4,:)
B(2,:) = B(2,:)*(3/7)
B(1,:) = B(2,:)*(4/3) + B(1,:)
0 comentarios
Respuesta aceptada
Matt J
el 22 de Oct. de 2022
Editada: Matt J
el 22 de Oct. de 2022
Presumably, it's just a display choice to keep things readable. The number there does exist, but they don't want to give you the mistaken impression that it is exactly zero:
B(1,:)
B(1,2)
1 comentario
Steven Lord
el 22 de Oct. de 2022
Matt J is correct. From the documentation for the rats function (which uses the same algorithm as format rat): "Asterisks indicate elements that cannot be printed in the allotted space, but which are not negligible compared to the other elements in X."
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!