How can I use symbolic variables while solving problems of MATLAB Cody?

1 Ansicht (letzte 30 Tage)
Swati Sarangi
Swati Sarangi am 23 Jan. 2021
Bearbeitet: John D'Errico am 23 Jan. 2021
syms x
x0 = 0.2;
f = cosh(x)/ (cosh(x0)-cosh(x))^0.5
I = int(f,0,x0);
I
Can someone verify this code snippet?
This code performs integration.

Antworten (1)

John D'Errico
John D'Errico am 23 Jan. 2021
Bearbeitet: John D'Errico am 23 Jan. 2021
I recall that Cody disallows the use of essentially all toolboxes. Symbolic variables are only active for you, IF you have the symbolic toolbox.
Why are they disallowed? Because that would not be fair to others. Not everyone has every toolbox. In fact many people might not have any specific toolbox. So Cody, to be fair to all users, only should allow solutions that use base MATLAB because otherwise you might find a solution that uses some function that nobody else will have. And that could not possibly be fair to others to compare to code they cannot access.
I can probably find a statement to this effect, were I to go looking for one in the help, but then I just found this Answer:
What Steven says, I would absolutely trust to be fact. Given that - Steve, should I buy or sell XXX stock? ;-)

Kategorien

Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by