Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Maxima: how to plot a 2D and 3D vector?

What is the simplest way to plot and 2D and 3D vectors using wxMaxima?

I have searched around, but all the solutions seem too complicated just for a single plot of simple vector, is that possible?

I would like to see 3 vectors at the same time in a 3D space in order to visualize a shape, but all options I have seen around seem to make this simple task not so trivial.

like image 773
nbro Avatar asked Feb 07 '26 20:02

nbro


1 Answers

Does it help?

load("draw");

draw3d(vector([0, 0, 0], [100, 0, 0]),
  vector([0, 0, 0], [0, 100, 0]),
  vector([0, 0, 0], [0, 0, 100]));
like image 100
slitvinov Avatar answered Feb 09 '26 13:02

slitvinov