how to pass function as argument ??

8 vues (au cours des 30 derniers jours)
david carlson
david carlson le 23 Mai 2020
Commenté : KSSV le 24 Mai 2020
Develop an M-file for the bisection method. Along with the two initial guesses, pass the function as an argument.
i know how to develop M-file for bisection method but the problem i dont know how to pass the function as argument
ex : 𝒇(𝒙)=𝟓𝒙^3−3x^𝟐+2𝒙−𝟐
how can i make a program that can read that equation as argument ??

Réponse acceptée

KSSV
KSSV le 23 Mai 2020
Read about anonymous functions.
f = @(x) 5*x^3-3*x^2+2*x-2 ;
Any value can be evaluated using:
f(1)
f(2)
  2 commentaires
david carlson
david carlson le 23 Mai 2020
i want to enter the function as [5 -3 2 -2] so matlab can record it as function of x
KSSV
KSSV le 24 Mai 2020
Yes very much possible....when you enter like that, use polyval to evaluate the function at x.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Programming Utilities dans Help Center et File Exchange

Produits


Version

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by