Simplify error in matlab
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have this code: simplify(((sin*(x^2))*(sec*x))/(1+sec*x))
and getting this error: Error using sin Not enough input arguments.
Error in project1 (line 5) p6=simplify(((sin*(x^2))*(sec*x))/(1+sec*x))
0 commentaires
Réponses (1)
Sean de Wolski
le 29 Jan 2015
Modifié(e) : Sean de Wolski
le 29 Jan 2015
sin*
Is not a valid expression... sin is a function that expects inputs:
sin(1)
What you are doing is
sin*(1)
which will give the same error. Same with sec
2 commentaires
Voir également
Catégories
En savoir plus sur Annotations 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!