display matrix row wise using fprintf have

15 ビュー (過去 30 日間)
Dimple singh
Dimple singh 2020 年 10 月 28 日
回答済み: madhan ravi 2020 年 10 月 28 日
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 .

回答 (1 件)

madhan ravi
madhan ravi 2020 年 10 月 28 日
matrix = [1:3; 4:6];
fprintf([repmat('%d ', 1, size(matrix, 2)) '\n'], matrix(1, :))
1 2 3

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by