Doubt of Linear Algebra self-paced course

5 次查看(过去 30 天)
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.

采纳的回答

Torsten
Torsten 2025-7-2
编辑:Torsten 2025-7-2
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Vector Fields 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by