I am looking for a program to visualize vector spaces. Ideally this is in the set of real numbers. For instance what shape does the following vertex in $\Bbb R^3$ represent? Vertices are: $\{(1,0,0),(0,2,0),(0,0,0)\}$
Asked
Active
Viewed 1,907 times
1
-
I believe it's a triangle in the $x-y$ plane... – Mar 10 '12 at 10:32
-
1Do you want to visualize vector spaces, or points in $\mathbb{R}^3$? – utdiscant Mar 10 '12 at 10:43
-
@Benjamin Lim, X3 is a free variable. – Rook Mar 10 '12 at 18:37
-
@utdiscant vector spaces in R3, but if this program can't do points its useless. – Rook Mar 10 '12 at 18:37
1 Answers
3
You can use pretty much anything for such a simple task. I give two examples of powerful and free software packages. One is Scilab:

created with
points = [0 0 0; 1 0 0; 0 2 0; 0 0 0]; // repeated endpoint to close the curve
param3d(points(:,1),points(:,2),points(:,3)); // creates the plot
p=get("hdl"); p.foreground=2; p.thickness=3; // cosmetics: color and thickness
The actual plot (but not this illustration) can be rotated with a mouse to better visualize the position of the points in space.
But if you prefer something with simpler syntax, the Sage command
point([(1,0,0),(0,2,0),(0,0,0)])
does the job.
ˈjuː.zɚ79365
- 3,004