plot the vector of two directions

조회 수: 2 (최근 30일)
sunderesh p
sunderesh p 2022년 1월 8일
답변: Rishabh Singh 2022년 1월 12일
clc
clear all
syms x y
F=input( 'enter the vector as i, and j order in vector form:');
P = inline(vectorize(F(1)), 'x', 'y');
Q = inline(vectorize(F(2)), 'x', 'y');
x = linspace(-1, 1, 10);
y = x;
[X,Y] = meshgrid(x,y);
U = P(X,Y);
V = Q(X,Y);
quiver(X,Y,U,V,1)
axis on
xlabel('x')
ylabel('y')

답변 (1개)

Rishabh Singh
Rishabh Singh 2022년 1월 12일
Hi,
Consider taking reference from this MATLAB Answer.
Hope this helps.

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by