How to became my Tridiagonal matrix

9 visualizaciones (últimos 30 días)
PRED LIU
PRED LIU el 7 de Jul. de 2020
Respondida: Walter Roberson el 8 de Jul. de 2020
B=[
16, 2 , 3, 13;...
5 , 11, 10, 8;...
9 , 7 , 6, 12;...
4, 14, 15, 1]
How to became my Tridiagonal matrix
16 0 0 0
5 2 0 0
9 11 3 0
4 7 10 13
0 14 6 8
0 0 15 12
0 0 0 1
  1 comentario
Dana
Dana el 7 de Jul. de 2020
If you want help. you should provide a much more detailed question. I have no idea what you're asking here.

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 8 de Jul. de 2020
full(spdiags(B',0:-1:-3,7,4))

Más respuestas (2)

KSSV
KSSV el 8 de Jul. de 2020
Read about diag.
iwant = diag(1:5)+diag(1:4,-1)+diag(1:4,1) ;

madhan ravi
madhan ravi el 8 de Jul. de 2020
[m, n] = size(B);
ix = (1 : 2*m : n*2*m) + (0 : n - 1).';
Wanted = zeros(2*m - 1 , n);
Wanted(ix) = B

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by