Function Matlab graph help

2 Ansichten (letzte 30 Tage)
Apostolos Parzialis
Apostolos Parzialis am 15 Dez. 2020
Kommentiert: KSSV am 15 Dez. 2020
Hello! I am new to Matlab and I was wondering if you could help me understand how to insert the function below in Matlab platform and how to create a graph based on that function. Thanks
in [-2,2]
  1 Kommentar
KSSV
KSSV am 15 Dez. 2020
This is very basic.....what have you tried?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

SHIVAM KUMAR
SHIVAM KUMAR am 15 Dez. 2020
Bearbeitet: SHIVAM KUMAR am 15 Dez. 2020
This shall be done in a script or even in command window.
x=-2:0.1:2 ; %makes an array for x with values -2 to 2 with increment of 0.01
y= exp( (sin(x)).^3 ) + x.^6-2*x.^4 - x.^3 - 1; %The function inplementation
plot(x,y);
xlabel("X values");
ylabel("f(x) values");
If this is fine then accept the answer or you can comment if you need anything esle/more.

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help 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