plus-minus function
59 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Sean Smith
le 30 Sep 2011
Réponse apportée : Selvakumar
le 23 Août 2023
How would I do the function
Y=B/2*(1-(4*X.^2)/L^2)*(1-Z.^2/D^2);
but before the B i need a plus and minus sign so the variable Y has all the values for positive and negative
0 commentaires
Réponse acceptée
Honglei Chen
le 30 Sep 2011
Hi Sean,
You can do something like
Y=B/2*(1-(4*X.^2)/L^2)*(1-Z.^2/D^2);
Y = [Y -Y];
HTH
0 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Logical 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!