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))';

 Réponse acceptée

John D'Errico
John D'Errico le 26 Nov 2017

1 vote

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.

Plus de réponses (1)

Matt J
Matt J le 26 Nov 2017
Modifié(e) : Matt J le 26 Nov 2017

2 votes

vector = zeros(1,100);

2 commentaires

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

Connectez-vous pour commenter.

Catégories

Community Treasure Hunt

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

Start Hunting!

Translated by