How i display matrix ?
324 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
ARJUN K P
el 16 de Sept. de 2015
Respondida: Pranav Bansal
el 4 de Nov. de 2019
my matrix is the form:
Ki = [25 35, 56 41,85 78]
i want print the like 35 or 41 or 78
0 comentarios
Respuesta aceptada
Star Strider
el 16 de Sept. de 2015
Firsgt, you need to change the commas to semicolons, then display the second column:
Ki = [25 35; 56 41; 85 78]
Display = Ki(:,2)
2 comentarios
Star Strider
el 16 de Sept. de 2015
Then you have to specify the row as well:
E12 = Ki(1,2) % Display ‘35’
E12 = Ki(2,2) % Display ‘41’
E12 = Ki(3,2) % Display ‘78’
Más respuestas (2)
Ver también
Categorías
Más información sobre Matrices and Arrays 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!