1/0.8x^2+0.5x+2

1 Ansicht (letzte 30 Tage)
Fernando Cerna Sanchez
Fernando Cerna Sanchez am 29 Mai 2022
Beantwortet: Sam Chak am 29 Mai 2022
help

Antworten (2)

KSSV
KSSV am 29 Mai 2022
x = linspace(-1,1);
p = 1./(0.8*x.^2+0.5*x+2) ; % element by element operation
plot(x,p)
  2 Kommentare
Walter Roberson
Walter Roberson am 29 Mai 2022
but possibly the 1/ only applies to the 0.8
KSSV
KSSV am 29 Mai 2022
I suspect it is OP's typo.

Melden Sie sich an, um zu kommentieren.


Sam Chak
Sam Chak am 29 Mai 2022
Based on the order of operations using PEMDAS: Parentheses, Exponents, Multiplication and Division (from left to right), Addition and Subtraction (from left to right) in mathematics and computer programming, I have at least helped you to type this out in MATLAB:
fcn = @(x) 1/0.8*x^2 + 0.5*x + 2
From here, you can do the options to do the following:
  • Plot the graph of this function
  • Solve the function
  • Find Taylor series expansion at point
  • Find the minimum of this function
  • Find the derivative of this function

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by