Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

플롯을 그려야 하는데 어떻게 함수를 입력해야 할지 모르겠어요

2 visualizzazioni (ultimi 30 giorni)
HYEONJU KIM
HYEONJU KIM il 22 Set 2020
Chiuso: MATLAB Answer Bot il 20 Ago 2021
Plot the function= 3x^2+2
over the interval 0 ≤ x ≤ 10.

Risposte (1)

Gouri Chennuru
Gouri Chennuru il 24 Set 2020
Hi Hyeonju,
You can make use of the "fplot" fucntion available in MATLAB which is mainly used to plot expression or function.
As a workaround you can try the following code in MATLAB
x = [0 10]
fplot(@(x)3*x.^2+2,[0 10])
Hope this Helps!
  1 Commento
HYEONJU KIM
HYEONJU KIM il 17 Ott 2020
thank you:)

Questa domanda è chiusa.

Tag

Community Treasure Hunt

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

Start Hunting!