Function Code ( Matlab )

3 views (last 30 days)
Erhan Ozsen
Erhan Ozsen on 21 May 2020
Commented: KSSV on 22 May 2020
Hi,
F=(log ( ax2+bx+c )- sin(ax2+bx+c))/
4(pi number)*x2+cos(x-2)*(ax2+bx+c)
x=9, a=1, b=3,c=5
I can't write the code. Can you help me?

Accepted Answer

KSSV
KSSV on 21 May 2020
x=9 ;
a=1;
b=3 ;
c=5 ;
F = (log(a*x^2+b*x+c)-sin(a*x^2+b*x+c))/(4*pi*x^2+cos(x-2)*(a*x^2+b*x+c))
You must read about MATLAB basics.
  2 Comments
Erhan Ozsen
Erhan Ozsen on 22 May 2020
Thanks
KSSV
KSSV on 22 May 2020
Thanks is accepting the asnwer.. :)

Sign in to comment.

More Answers (0)

Categories

Find more on MATLAB Compiler in Help Center and File Exchange

Products


Release

R2018a

Community Treasure Hunt

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

Start Hunting!