필터 지우기
필터 지우기

error in creating function

조회 수: 1 (최근 30일)
Kayla Garcia
Kayla Garcia 2024년 2월 1일
댓글: Steven Lord 2024년 2월 1일
i keep getting an error on this when i try to plot it. not sure what i did wrong
plot(x,hw2_part1d,'k-');grid;hold on
Error in hw2_part1d (line 2)
y = x.^5 + x.^4 - 4*x.^3 - 3*x.^2 + 3*x + 1;
it calls this function:
function y = hw2_part1d(x)
y = x.^5 + x.^4 - 4.*x.^3 - 3.*x.^2 + 3.*x + 1;
end
  댓글 수: 1
Steven Lord
Steven Lord 2024년 2월 1일
In the future, when asking for help diagnosing the cause of error and/or warning messages please include the text of the error and/or warning messages (all the text displayed in the Command Window in red and/or orange) in your post. The exact text can help make determining the cause easier and faster.

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

채택된 답변

Voss
Voss 2024년 2월 1일
plot(x,hw2_part1d(x),'k-');grid;hold on
% ^^^ call the function with x as input
  댓글 수: 2
Kayla Garcia
Kayla Garcia 2024년 2월 1일
omg! lol thank you!
Voss
Voss 2024년 2월 1일
You're welcome!

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

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by