display matrix row wise using fprintf have

17 visualizaciones (últimos 30 días)
Dimple singh
Dimple singh el 28 de Oct. de 2020
Respondida: madhan ravi el 28 de Oct. de 2020
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)

madhan ravi
madhan ravi el 28 de Oct. de 2020
matrix = [1:3; 4:6];
fprintf([repmat('%d ', 1, size(matrix, 2)) '\n'], matrix(1, :))
1 2 3

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by