1/0.8x^2+0.5x+2

1 view (last 30 days)
Fernando Cerna Sanchez
Fernando Cerna Sanchez on 29 May 2022
Answered: Sam Chak on 29 May 2022
help

Answers (2)

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

Sign in to comment.


Sam Chak
Sam Chak on 29 May 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

Categories

Find more on MATLAB in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!