display matrix row wise using fprintf have

조회 수: 19 (최근 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 CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by