how to get plus and minus sign element of matrix at the same time?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a matrix like n=[x,y,z] I need to consider plus and minus sign of x,y and z "at the same time" because I need unique permutation of mix signs as well s.t. [-x,y,z],[x,-y,-z],etc.
0 comentarios
Respuestas (1)
Sean de Wolski
el 16 de Mayo de 2013
[xx yy zz] = meshgrid(-1:1);
[xx(:) yy(:) zz(:)]
?
2 comentarios
frwmetric
el 16 de Mayo de 2013
Editada: Azzi Abdelmalek
el 19 de Mayo de 2013
Sean de Wolski
el 16 de Mayo de 2013
That was just to demonstrate, if you don't want zeros:
meshgrid([-2 -1 1 2]);
If you have x y and z, this is equivalent to:
meshgrid([-x -y -z x y z]);
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!