Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Simple version of creating a matrix
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (2)
Mario Malic
am 3 Mär. 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 Kommentare
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!