필터 지우기
필터 지우기

dynamic pressure m m

조회 수: 3 (최근 30일)
NAS
NAS 2020년 8월 30일
댓글: Image Analyst 2020년 9월 26일
How to get this type of output ? (Strokes second order Wave theory) Please help .
The

채택된 답변

Image Analyst
Image Analyst 2020년 9월 8일
Use the plot() function, the xlabel() and ylabel() functions, the text() function, and the legend() function.
  댓글 수: 1
Image Analyst
Image Analyst 2020년 9월 26일
NAS, not sure what your edit was. I think you should have been able to figure it out over the past month, but in case you weren't able to, here is a start:
x = [0, 1.5];
dynamicPressure = [0, 0];
hydrostaticPressure = [100000, 120000];
totalPressure = dynamicPressure + hydrostaticPressure;
plot(x, dynamicPressure, 'r-', 'LineWidth', 2);
ylim([-20000, 120000]);
grid on;
hold on;
plot(x, hydrostaticPressure, 'g-', 'LineWidth', 2);
plot(x, hydrostaticPressure, 'b-', 'LineWidth', 2);
fontSize = 22;
xlabel('z', 'FontSize', fontSize);
ylabel('pressure', 'FontSize', fontSize);
legend('Dynamic Pressure', 'Hydrostatic Pressure', 'Total Pressure', 'Location', 'east');
If this solves your problem, then could you let me know if the time I spent to help you was worthwhile and please "Accept this answer"? Thanks in advance. If it didn't work, then explain better what you want and what didn't work. If you really want that "b" in a box you can use rectangle() and text().

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Continuous Wavelet Transforms에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by