Simple version of creating a matrix
Informazioni
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
Mostra commenti meno recenti
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!
Risposte (2)
Jesus Sanchez
il 3 Mar 2020
Modificato: Jesus Sanchez
il 3 Mar 2020
Mario Malic
il 3 Mar 2020
You can fill all entries with either 'ones' or 'zeros', then change the rest:
Aeq = zeros(1,20);
Aeq (1,1:10) = ones;
Questa domanda è chiusa.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!