shaping matrix w.r.t. the array
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
sermet
el 5 de Dic. de 2016
Respondida: Guillaume
el 5 de Dic. de 2016
for example
Cyy=[0.1;0.2;0.3;0.4;0.5]; %array
how can I create Q matrix w.r.t the Cyy array as follows;
Q=[Cyy(1) Cyy(2) Cyy(3) Cyy(4) Cyy(5);Cyy(2) Cyy(1) Cyy(2) Cyy(3) Cyy(4) Cyy(5);Cyy(3) Cyy(2) Cyy(1) Cyy(2) Cyy(3);Cyy(4) Cyy(3) Cyy(2) Cyy(1) Cyy(2);Cyy(5) Cyy(4) Cyy(3) Cyy(2) Cyy(1)];
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!