I want print the matrix, in orginal matrix from but it displays it as a series of coloumns.

1 visualizzazione (ultimi 30 giorni)
H_Mat=[1, 0, 1, 0, 1, 0, 1, 0;
1, 0, 0, 1, 0, 1, 0, 1;
0, 1, 1, 0, 0, 1, 1, 0;
0, 1, 0, 1, 1, 0, 0, 1];
[row,coloumn]=size(H_Mat);
for i = 1:row
for j = 1:coloumn
fprintf (' %d,', H_Mat (i,j));

Risposta accettata

Thorsten
Thorsten il 1 Feb 2013
It's easy as
disp(H_Mat)

Più risposte (2)

Shashank Prasanna
Shashank Prasanna il 31 Gen 2013
Try:
H_Mat=[1, 0, 1, 0, 1, 0, 1, 0; 1, 0, 0, 1, 0, 1, 0, 1; 0, 1, 1, 0, 0, 1, 1, 0; 0, 1, 0, 1, 1, 0, 0, 1];
dlmwrite('test1.txt', H_Mat,'delimiter',' ')
  1 Commento
Krishna Prasad Rao
Krishna Prasad Rao il 31 Gen 2013
Modificato: Krishna Prasad Rao il 31 Gen 2013
Actually i miss spelled the question, it gives series of rows as i see, but i want it to print so it looks like a Matrix. Thanks

Accedi per commentare.


Image Analyst
Image Analyst il 31 Gen 2013
Perhaps you just need to swap the order of rows and columns in the for loops, and add a new line:
for j = 1:row
for i = 1:coloumn
fprintf (' %d,', H_Mat (j,i));
end
fprintf ('\n');
end
In the command window:
1, 0, 1, 0, 1, 0, 1, 0,
1, 0, 0, 1, 0, 1, 0, 1,
0, 1, 1, 0, 0, 1, 1, 0,
0, 1, 0, 1, 1, 0, 0, 1,
  7 Commenti
Image Analyst
Image Analyst il 1 Feb 2013
Modificato: Image Analyst il 1 Feb 2013
The colon, when used where you'd normally use an index, means "all". So in your case, where the colon is in the first index, which corresponds to the "rows" index, the colon mean "all rows". So X(:,p) means "all rows in column #p." Basically it extracts out the pth column from the matrix into a vertical column vector.

Accedi per commentare.

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by