I keep getting this error and i cannot work out what it means

Indat = load('-ascii','C:\Users\jbake_000\Documents\MATLAB\SC101\weather.txt');
Time = Indat(:, 1);
Windspeed = Indat(:, 4);
Windgust = Indat(:, 5);
figure(1);
clf;
Plot(Time, Windspeed);
hold on;
plot( Windgust, 'r');
xlabel('time(s)');
ylabel('speed K/ph');
title('Average windspeed and windgusts vs time')
Undefined function 'Plot' for input arguments of type 'double'.
Error in Perth_weather_obs_April08 (line 29) Plot(Time, Windspeed);;

답변 (1개)

Roger Stafford
Roger Stafford 2013년 5월 15일

1 개 추천

You used an uppercase 'P' in Plot(Time, Windspeed). Matlab doesn't know what that is.

카테고리

도움말 센터File Exchange에서 Interpolation에 대해 자세히 알아보기

질문:

2013년 5월 15일

Community Treasure Hunt

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

Start Hunting!

Translated by