How can I make the dimensions agree for this function
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
f = @(x) x - exp(cos(transpose[1:4])*sum(x)); And x=[2.5;2;1.4;.9] is a column vector. when I subtract it says error Matrix dimensions must agree.
2 commentaires
Réponse acceptée
Azzi Abdelmalek
le 1 Déc 2014
Modifié(e) : Azzi Abdelmalek
le 1 Déc 2014
f = @(x) x.' - exp(cos([1:4]*sum(x)))
2 commentaires
Azzi Abdelmalek
le 1 Déc 2014
Modifié(e) : Azzi Abdelmalek
le 1 Déc 2014
f = @(x) x - exp(cos([1:4]')*sum(x));
x=[2.5;2;1.4;.9]
f(x)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!