basic questions how to find x
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
hello
if i have a function y=f(x) and x is given. What function do I use to calculte the corresponding y?
- symbolical - numerical
example: y=5x+2 and x=2 question give y? thanks
0 commentaires
Réponse acceptée
Azzi Abdelmalek
le 23 Juin 2013
Modifié(e) : Azzi Abdelmalek
le 23 Juin 2013
y=@(x) 5*x+2
y(2)
0 commentaires
Plus de réponses (1)
Amir Ghasemiyan
le 24 Juin 2013
and this is another way:
function y=y(x)
y=5*x+2;
and in command window:
y(2)
0 commentaires
Voir également
Catégories
En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!