display matrix row wise using fprintf have
13 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 .
0 commentaires
Réponses (1)
madhan ravi
le 28 Oct 2020
matrix = [1:3; 4:6];
fprintf([repmat('%d ', 1, size(matrix, 2)) '\n'], matrix(1, :))
0 commentaires
Voir également
Catégories
En savoir plus sur Shifting and Sorting Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!