- PDF labeled "MATLAB Primer" and study chapters 2 and 5.
- PDF labeled "Mathematics", and train to have a good mastery of chapters 1 and 9.
- PDF labeled "Programming Fundamentals" and have a look at the table of content so you can use it as a reference later.
Info
This question is closed. Reopen it to edit or answer.
how to eliminate matrix?
1 view (last 30 days)
Show older comments
ex [ 1 4 6 8 9; 5 7 9 5 3; 6 8 2 4 7; 4 3 2 1 0;] how can I do like this [ 1 4 6 8 9; 5 0 0 0 0; 6 0 2 4 7; 4 0 2 1 0;] or [ 0 0 0 0 0; 0 7 9 5 3; 0 8 2 4 7; 0 3 2 1 0;]
1 Comment
Cedric
on 18 Apr 2013
I would recommend the official documentation:
Under MATLAB, you could get..
The first two references will teach you how to index blocks of matrices. It's a good investment of your time to train a bit indexing. I am sure that after no more than 20-30 minutes spent on these references, you will know how to answer your question.
Answers (1)
Desiree Phillips
on 18 Apr 2013
Edited: Desiree Phillips
on 18 Apr 2013
A = [ 1 4 6 8 9; 5 7 9 5 3; 6 8 2 4 7; 4 3 2 1 0;]
Get [ 1 4 6 8 9; 5 0 0 0 0; 6 0 2 4 7; 4 0 2 1 0;] by using
A(2,2:end) = 0; % (Second row, Entries 2 to the end)
For [ 0 0 0 0 0; 0 7 9 5 3; 0 8 2 4 7; 0 3 2 1 0;] use
A(1,:) = 0; % Colon by itself means entire row
To eliminate the row, use [] instead of 0.
0 Comments
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!