3

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.

nbro
  • 15,395
  • 32
  • 113
  • 196

1 Answers1

2

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]));
slitvinov
  • 5,693
  • 20
  • 31