Problem 637. Volume of a Parallelepiped

Calculate the volume of a Parallelepiped given the vectors for three edges that meet at one vertex.

A cube is a special case of a Parallelepiped.

vectors=[1 0 0;0 1 0;0 0 1]; % Unity Cube

V=1;

vectors=[2 0 0;0 2 0;1 0 1]; % 45 degree half height Parallelepiped

V=4;

Solution Stats

65.97% Correct | 34.03% Incorrect
Last Solution submitted on Jul 05, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers278

Suggested Problems

More from this Author308

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!