Draw the ezplot for the function 𝑥^ 2 + 6𝑥 + 55

9 visualizzazioni (ultimi 30 giorni)
Divyansh Harsh
Divyansh Harsh il 14 Ott 2021
Commentato: Image Analyst il 19 Ott 2021
WANT A CODE PLS

Risposte (2)

KSSV
KSSV il 14 Ott 2021
It is very striaght forward and very easy to plot. Just read the documentation. It got example problem with which you can learn to do the presennt problem.

Image Analyst
Image Analyst il 14 Ott 2021
I never use ezplot() - I just specify the range and other options explicitly. You might try this:
x = linspace(-10, 10, 1000);
y = x .^ 2 + 6 * x + 55;
plot(x, y, 'b-', 'LineWidth', 3);
grid on;
title('y = x .^ 2 + 6 * x + 55', 'FontSize', 20);
xlabel('x', 'FontSize', 20);
ylabel('y', 'FontSize', 20);
ax = gca;
ax.XAxisLocation = 'origin'
ax.YAxisLocation = 'origin'
ylim([0, max(y)])
For additional customization options, see the attached demo.
  1 Commento
Image Analyst
Image Analyst il 19 Ott 2021
@Divyansh Harsh, reminder - you got two answers to your question. Please accept one or say why it's not working.

Accedi per commentare.

Categorie

Scopri di più su Programming in Help Center e File Exchange

Prodotti


Release

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by