How to generate an orthogonal matrix in Octave?
I saw something like that
gallery('orthog',n,k)
in matlab, but I can't find any similar function in Octave.
Thanks!
How to generate an orthogonal matrix in Octave?
I saw something like that
gallery('orthog',n,k)
in matlab, but I can't find any similar function in Octave.
Thanks!
gallery("orthog",n,k)command in octave; seedoc gallery. However, it should be noted that for a givenn, the matrix returned is fixed. It is not random. – Armadillo Jim Jul 27 '15 at 20:54