Orthogonal vector to this

How to get orthogonal vector to this:
s=((1/sqrt(2)).*(2*randi([0,1],100,2)-1)+1i*(1/sqrt(2)).*(2*randi([0,1],100,2)-1))';

 Risposta accettata

John D'Errico
John D'Errico il 26 Nov 2017
Orthogonal to what? The result is a 2x100 complex valued array.
Are you asking how to find a vector orthogonal to the rows of s?
That is trivial.
help null
It will give you a basis for the null space of the rows of s, in the form of a 100x98 matrix.
If you are asking something else, you need to explain what you are looking to find.

Più risposte (1)

Matt J
Matt J il 26 Nov 2017
Modificato: Matt J il 26 Nov 2017
vector = zeros(1,100);

2 Commenti

John D'Errico
John D'Errico il 26 Nov 2017
Oh, sure. But ... correct. :)
Ashish Mishra
Ashish Mishra il 26 Nov 2017
Awesome!!

Accedi per commentare.

Categorie

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by