Correct plot in matlab
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi,
I stored some data in two column matrix, named "Shear", the results are correct. But how to plot this data in a correct way? I want the left column data on the x-axis (0m...26.6m) corresponding with the second column data on the Y-axis.
The command "plot(Shear)" gives not the correct result at all.
Thanks in advance
syms Z
X=0
while X<=0.5
Shear =[X,(q)/(2*h)*int((((sin(omega))^2+(h^2)*(Z^2+Y^2-2*Z*Y*cos(omega)))^(1/2)),Z,26.6,26.6-X)];
disp(Shear);
X = X+0.1;
end
plot(Shear)
댓글 수: 0
답변 (2개)
José-Luis
2012년 10월 21일
Try:
plot(Shear(:,1),Shear(:,2));
If you give a matrix as an argument to plot() it will draw each column as independent data.
Read the documentation for more details:
doc plot;
댓글 수: 0
Azzi Abdelmalek
2012년 10월 21일
편집: Azzi Abdelmalek
2012년 10월 21일
You should use Shear=[Shear,... instead of Shear=[X,..
Shear=0;X=0;
while X<=0.5
Shear =[Shear,(q)/(2*h)*int((((sin(omega))^2+(h^2)*(Z^2+Y^2-2*Z*Y*cos(omega)))^(1/2)),Z,26.6,26.6-X)];
X=X+0.5
end
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!