display matrix row wise using fprintf have
Mostrar comentarios más antiguos
i have 100*180 size of matrix, i want to show their 1st row in my code using fprintf becuase its is row is my node of circuit .
Respuestas (1)
matrix = [1:3; 4:6];
fprintf([repmat('%d ', 1, size(matrix, 2)) '\n'], matrix(1, :))
Categorías
Más información sobre Shifting and Sorting Matrices 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!