Doubt of Linear Algebra self-paced course

5 visualizaciones (últimos 30 días)
Pranav Illinda
Pranav Illinda el 2 de Jul. de 2025
Comentada: Pranav Illinda el 3 de Jul. de 2025
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.

Respuesta aceptada

Torsten
Torsten el 2 de Jul. de 2025
Editada: Torsten el 2 de Jul. de 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

Más respuestas (0)

Categorías

Más información sobre Vector Fields en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by