강의

멘토링

커뮤니티

Inflearn Community Q&A

wooyoung96541312's profile image
wooyoung96541312

asked

Programming Starting with MATLAB

Processing Real Data

plotyy 함수 질문

Written on

·

601

1

다음과 같은 오류가 발생합니다...

다음 사용 중 오류가 발생함: plot

벡터들의 길이는 같아야 합니다.

오류 발생: plotyy>fevalfun (385번 라인)

    h = feval(func,x,y);

오류 발생: plotyy (78번 라인)

[h1,ax(1)] = fevalfun(fun1,ax(1),x1,y1,caxspecified);

오류 발생: textread_test (24번 라인)

plotyy(1:3500, temper,1:3500, psu)

아래와 같이 코드를 작성하였습니다.

temper = flipud(temper);

psu = flipud(psu);

plotyy(1:3500, temper,1:3500, psu)

legend('temper', 'psu')

원인이 뭔지 알고싶어요

MATLAB

Answer

This question is waiting for answers
Be the first to answer!
wooyoung96541312's profile image
wooyoung96541312

asked

Ask a question