Doubt of Linear Algebra self-paced course

조회 수: 5 (최근 30일)
Pranav Illinda
Pranav Illinda 2025년 7월 2일
댓글: Pranav Illinda 2025년 7월 3일
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