Doubt of Linear Algebra self-paced course

Sir/Madam,
I am doing a course titled" Introduction to Linear Algebra in MATLAB " .In the course , for plotting Eigen Vectors , PlotVectorpair() function is created only for this course which accepts 2 vectors as inputs and give o/p graphically. Are there any buil-in functions in MATLAB for this as, this function is meant only for this course.

 Risposta accettata

Torsten
Torsten il 2 Lug 2025
Modificato: Torsten il 2 Lug 2025
Why don't you copy it from the course and use it in future ?
Or use "quiver" resp. "quiver3":
figure(1)
quiver([0,0] ,[0,0], [3,-4], [4,3],'r')
axis equal
figure(2)
quiver3([0,0] ,[0,0], [0,0], [3,-4], [4,3], [-1,6],'r')
axis equal

Più risposte (0)

Categorie

Community Treasure Hunt

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

Start Hunting!

Translated by