convert from Matlab to equation (formula)
Show older comments
Hello, I hope you are doing well
Just a simple question, I have this short code which includes a loop:
syms Y3 GOD
for j=1:numel(Y3)
if j==1
GOD(j)=Y3(j);
else
GOD(j)=Y3(j)-sum(GOD);
end
end
I am very intuitive with matlab, and I am not so good in algebra, how can I write these lines of code as formula?
I know there are several ways to convert a formula to matlab code but not the other way around....
any suggestion is higly appreciated
Best
2 Comments
David Hill
on 2 Aug 2021
What are Y3 and GOD initially? You define as sybolic, but treat as an array.
Jules Ray
on 3 Aug 2021
Accepted Answer
More Answers (0)
Categories
Find more on Conversion Between Symbolic and Numeric 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!
