please help in typing these sigma equations in matlab script.
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
please help me how to solve these equations(13-27; 13-25; 13-23; 13-22; 13-28; 13-30;) given in pdf in matlab.I'm unable to type and solve these equation in matlab.
4 Kommentare
Torsten
am 13 Okt. 2022
sigma is sum() in MATLAB.
v = 1:10;
sum(v)
1 + 2 + 3 + 4 +5 + 6 + 7 + 8 + 9 + 10
Antworten (1)
Sai
am 18 Okt. 2022
I understand that you are facing the issue with the usage of summation in your MATLAB code.
You can use available MATLAB function “sum” which replicates the same as that of summation in math.
You can also refer to the following documentation for future reference:
Following code snippet may help you to resolve the issue:
%Assume Xi
Xi = [1, 2, 3, 6, 2, 8, 9, 1, 7]
sum(Xi)
0 Kommentare
Siehe auch
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!