Clear Filters
Clear Filters

plus-minus function

94 views (last 30 days)
Sean Smith
Sean Smith on 30 Sep 2011
Answered: Selvakumar on 23 Aug 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

Accepted Answer

Honglei Chen
Honglei Chen on 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

More Answers (1)

Selvakumar
Selvakumar on 23 Aug 2023
X=B−√B2+16A2A

Categories

Find more on Mathematics in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!