How to plot meshgrid without successive intervals
이전 댓글 표시
Respected sir,
My data set is X=1,1.5,2,2.5,3
Y=0.8351,0.8265,0.7569,0.6348,0.5219
답변 (1개)
KSSV
2020년 8월 25일
X=[1,1.5,2,2.5,3] ;
Y=[0.8351,0.8265,0.7569,0.6348,0.5219] ;
[X,Y] = meshgrid(X,Y) ;
plot(X,Y,'r',X',Y','r')
카테고리
도움말 센터 및 File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!