Where is the mistake of the ^? i can plot the graph without the ^ but it say i have mistake after adding the ^ or .^
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Kai Wing YU
le 16 Nov 2021
Réponse apportée : Awais Saeed
le 16 Nov 2021
x_array = -5:5;
y_array1 = sin(x_array.^2).*exp^(cos(x_array));
plot(x_array, y_array1)
0 commentaires
Réponse acceptée
Awais Saeed
le 16 Nov 2021
exp^(cos) is incorrect. Use
y_array1 = sin(x_array.^2).* exp(cos(x_array));
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!