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 comentario

Steven Lord
Steven Lord el 1 de Feb. de 2024
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.

Iniciar sesión para comentar.

 Respuesta aceptada

Voss
Voss el 1 de Feb. de 2024

0 votos

plot(x,hw2_part1d(x),'k-');grid;hold on
% ^^^ call the function with x as input

2 comentarios

Kayla Garcia
Kayla Garcia el 1 de Feb. de 2024
omg! lol thank you!
Voss
Voss el 1 de Feb. de 2024
You're welcome!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Characters and Strings en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 1 de Feb. de 2024

Comentada:

el 1 de Feb. de 2024

Community Treasure Hunt

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

Start Hunting!

Translated by