필터 지우기
필터 지우기

Index exceeds the number of array elements (20).

조회 수: 1 (최근 30일)
Daniel Martelli
Daniel Martelli 2020년 8월 7일
댓글: Daniel Martelli 2020년 8월 7일
A = 4; % centimeters
w = 0.6; % (rad/sec), angular frequency
t = 0:10; % time
x = A*cos(w*t) % time displacement
plot (t',x');
title('Displacement vs Time')
xlable('Time in s')
ylable('Displacement in cm')
Index exceeds the number of array elements (20).
My friends Code
% Plot the dispalcment vs the time
plot(t,x,'Linewidth',2)
title('Displacement vs Time')
xlabel('Time in s')
ylabel('Displacement in cm')
I dont understand why im getting this error, when i have written the same code. The variables are different but the layout is the same. This is my first time using MatLab without the lecturers help and i am stuck. I have tried changing different things but it just doesnt seem to work.
Thanks,
Daniel
  댓글 수: 8
KSSV
KSSV 2020년 8월 7일
title is a in built function....so a variable/ function on the name should not be used.
Daniel Martelli
Daniel Martelli 2020년 8월 7일
Oh okay. Thankyou for your help

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Title에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by