Group Abstract Group Abstract

Message Boards Message Boards

Mathematica Calculus Help - Graphing Vectors

Posted 11 years ago
Attachments:
POSTED BY: Anthony DeCarlo
Show[{vector3d[{0, 0, 0}, v], vector3d[{0, 0, 0}, w], vector3d[{0, 0, 0}, v[Cross]w, 1]}, 
Axes -> True, PlotRange -> Automatic, BoxRatios -> Automatic, AxesLabel -> {"x", "y", "z"}, ViewPoint -> {6, 2, 2}]

The above is wrong. There is no v[Cross]w syntax in Mathematica. Try Cross[v,w]

Show[{vector3d[{0, 0, 0}, v], vector3d[{0, 0, 0}, w], vector3d[{0, 0, 0}, Cross[v,w], 1]}, 
Axes -> True, PlotRange -> Automatic, BoxRatios -> Automatic, AxesLabel -> {"x", "y", "z"}, ViewPoint -> {6, 2, 2}]
POSTED BY: Nasser M. Abbasi
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard