Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Can anyone help me with telling me how my variable is undefined?

조회 수: 1 (최근 30일)
dbh0031
dbh0031 2015년 10월 23일
마감: MATLAB Answer Bot 2021년 8월 20일
Its telling me my variable for temperature is undefined when i clearly define it in line 8. Any thoughts?

답변 (1개)

Ken Atwell
Ken Atwell 2015년 10월 23일
You are writing a function that accepts 'temperature' as an input parameter. So, 'temperature' will exist inside your functions, assuming you pass in an argument to your function. 'temperature' is not declared on line 8, the existing values (line 1) is being overwritten.
That is all inside your function. Outside your function, working in the Command Window, 'temperature' will not exist unless you create it. Were you provided a set of test data? If so, you need to load that in and pass it to 'sortTemps', something like:
>> myData = ...;
>> newData = sortTemps(myData);

Community Treasure Hunt

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

Start Hunting!

Translated by