How can I print the output data in different way?
Mostrar comentarios más antiguos
Hi,
I have a simple equation as below
"
[x,y] = meshgrid(-5: 4: 5, -5: 4: 5);
x1 = -1;
y1 = 0;
V_x1 = ((y-y1)./((x-x1).^2+(y-y1).^2)) "
It does give the output as below
"
V_x1 =
-0.1220 -0.2000 -0.1220
-0.0588 -1.0000 -0.0588
0.1200 0.3333 0.1200
"
Does anyone know how can I have them like
"
V_x1 =
-0.1220 -0.2000 -0.1220 -0.0588 -1.0000 -0.0588 0.1200 0.3333 0.1200
"
To be in one row or column.
Thanks in advance.
Respuesta aceptada
Más respuestas (1)
Sara
el 30 de Abr. de 2014
0 votos
V_x1 = reshape(V_x1',1,[])
Categorías
Más información sobre Whos en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!