Could any body check my work? (Plot the function)

x = [-56:64];
y = [3.*x^2-5.*x-6];
plot(x,y,'--r','LineWidth',0.5)
xlabel('e')
ylabel('n')
title('kg')
Is this the proper answer for the question? Is there anything I should change for it to become the correct answer?
Question assignment.jpg

 Akzeptierte Antwort

madhan ravi
madhan ravi am 24 Aug. 2019

0 Stimmen

Your x and y doesn’t need square brackets. Check your title once again.

9 Kommentare

So should this be the answer i should give?
x = -56:64;
y = 3.*x^2-5.*x-6;
plot(x,y,'--y','LineWidth',0.5)
xlabel('e')
ylabel('n')
title('kg')
madhan ravi
madhan ravi am 24 Aug. 2019
Seems about right, but the title part is confusing , "your weight in kg" , are you calculating any weight?
John wick
John wick am 24 Aug. 2019
Bearbeitet: John wick am 24 Aug. 2019
No I need to create a title for the plot, It's a question I learn, we are not calculating any weight
madhan ravi
madhan ravi am 24 Aug. 2019
Bearbeitet: madhan ravi am 24 Aug. 2019
John wick
John wick am 24 Aug. 2019
What do u mean? which latter code? Could you give me some example?
x = -56:64;
y = 3*x.^2-5*x-6;
plot(x,y,'--y','LineWidth',0.5)
xlabel('e')
ylabel('n')
title('kg')
John wick
John wick am 24 Aug. 2019
So I shouldn't use 3.*x Can you explain why it should be that format? why not 3.*x is there any difference?
madhan ravi
madhan ravi am 24 Aug. 2019
https://in.mathworks.com/matlabcentral/answers/477409-could-any-body-check-my-work-plot-the-function#comment_738540 - probably reading that link in the comment should help you understand basically you’re still stuck in the fundamentals of MATLAB.
John wick
John wick am 24 Aug. 2019
I still need to improve more, I will read and try to understand it from the link you gave me. Thank you so much for helping me all this times!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Control System Toolbox finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by