Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Simple version of creating a matrix
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hello people,
I would like to know if someone has a quick way of writing this matrix using 'ones' and 'zeros':
Aeq=[1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1;0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,-1];
Many thanks!
0 comentarios
Respuestas (2)
Mario Malic
el 3 de Mzo. de 2020
You can fill all entries with either 'ones' or 'zeros', then change the rest:
Aeq = zeros(1,20);
Aeq (1,1:10) = ones;
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!