Info
This question is closed. Reopen it to edit or answer.
Simple version of creating a matrix
1 view (last 30 days)
Show older comments
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 Comments
Answers (2)
Mario Malic
on 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;
0 Comments
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!