- x
- y
- complex direction #1, "i"
- complex direction #2, "j"
how to plot a vector?
1 回表示 (過去 30 日間)
古いコメントを表示
The vector questionis F=e^y i + x*e^y j
how do I plot this equation on matlab
1 件のコメント
Walter Roberson
2022 年 4 月 1 日
編集済み: Walter Roberson
2022 年 4 月 1 日
Do I understand correctly that you want a plot with four independent directions?
And then F would be the dependent direction, for a total of 5 dimensions in the plot ?
I am not clear as to whether you want exp(1i*y) or exp(y)*1i ?
This will not be a vector. You have absolute minimum of two independent directions, x and y, so your result cannot be less than a surface.
回答 (1 件)
KSSV
2022 年 4 月 2 日
x = linspace(-1,1) ;
y = linspace(-1,1) ;
[X,Y] = meshgrid(x,y) ;
% F = e^y i + x*e^y j
u = exp(Y) ;
v = X.*exp(Y) ;
quiver(X,Y,u,v)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!