[Solved] How to loop vectors when using matlab?


How about:

N = 100;
B = rand(N, N);
A = B / norm(B); % substitute norm of your choice

0

solved How to loop vectors when using matlab?