How to delete the last rows and columns?

1 visualización (últimos 30 días)
Omar B.
Omar B. el 21 de Feb. de 2020
Comentada: Adam el 21 de Feb. de 2020
How to delete the last three rows and three columns from the following matrix without change N and then multiply the last off diagonal by 6?
then how can we store the new matrix?
M = zeros(N,N);
>> M( 1:1+N:N*N) = a;
>> M(N+1:1+N:N*N) = b;
>> M( 2:1+N:N*N-N) = c
M =
-1 4 0 0 0 0 0 0 0 0
2 -1 4 0 0 0 0 0 0 0
0 2 -1 4 0 0 0 0 0 0
0 0 2 -1 4 0 0 0 0 0
0 0 0 2 -1 4 0 0 0 0
0 0 0 0 2 -1 4 0 0 0
0 0 0 0 0 2 -1 4 0 0
0 0 0 0 0 0 2 -1 4 0
0 0 0 0 0 0 0 2 -1 4
0 0 0 0 0 0 0 0 2 -1
  2 comentarios
darova
darova el 21 de Feb. de 2020
What about this?
Adam
Adam el 21 de Feb. de 2020
What is 'the last' off diagonal?

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by