Doubt of Linear Algebra self-paced course

5 views (last 30 days)
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.

Accepted Answer

Torsten
Torsten on 2 Jul 2025
Edited: Torsten on 2 Jul 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

More Answers (0)

Categories

Find more on Vector Fields in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!