Hi, I am trying to plot a graph with logarithmic scale with semilogx, however I have encountered problem using it.
I have checked that both Freq' and abs(Zexp01) are 31 by 24, so they are the same size. However I still encounter problem that says vectors must be the same size. May I know how to solve this?
Thank you!

 채택된 답변

VBBV
VBBV 2022년 12월 30일

1 개 추천

semilogx(freq,abs(Zexp01),'.') % use freq

댓글 수: 2

use
freq
instead of
Freq
and without transpose operator '
aye thanks! this works!

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

추가 답변 (1개)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2022년 12월 30일
편집: Sulaymon Eshkabilov 2022년 12월 30일

1 개 추천

Plot them like this way then by removing the transpose operation:
plot(freq, abs(Zexp01), '.')

카테고리

도움말 센터File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

질문:

2022년 12월 30일

댓글:

2022년 12월 30일

Community Treasure Hunt

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

Start Hunting!

Translated by