How to draw a line graph in a 2D oblique coordinate system?
조회 수: 7 (최근 30일)
이전 댓글 표시
请教,如何画2D斜坐标系的线图?
Please tell me how to draw a line drawing in a 2D oblique coordinate system?
댓글 수: 0
답변 (1개)
halleyhit
2024년 6월 19일
편집: Torsten
2024년 7월 28일
酱紫?
Jiang Zi?
i=sqrt(-1);
x_v=1;
y_v=(1+i)/sqrt(2);%定义y轴的方向
x=1:10;
y=1:10;
data=x*x_v+y*y_v;%把原来的数据x-y变到新坐标系
x=0:10;
y=zeros(1,11);
xaxes=x*x_v+y*y_v;%把原来的x轴变到新坐标系
x=zeros(1,11);
y=0:10;
yaxes=x*x_v+y*y_v;%把原来的y轴变到新坐标系
plot(real(data),imag(data),'blue')
hold on
plot(real(xaxes),imag(xaxes),'red')
plot(real(yaxes),imag(yaxes),'red')
hold off
참고 항목
카테고리
Help Center 및 File Exchange에서 Big Data Processing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!