- 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
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
how to eliminate matrix?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentario
Cedric
el 18 de Abr. de 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.
Respuestas (1)
Desiree Phillips
el 18 de Abr. de 2013
Editada: Desiree Phillips
el 18 de Abr. de 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 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!