how to use symsum for this problem

1 Ansicht (letzte 30 Tage)
Ashutosh
Ashutosh am 21 Sep. 2022
Kommentiert: Walter Roberson am 21 Sep. 2022
sym=symsum([i-Un]^2,i,1,s);
SD=(sym/n)^1/2;

Antworten (1)

Torsten
Torsten am 21 Sep. 2022
If you use symbolic variables, you should name them as such.
And you shouldn't name a variable "sym", especially if you do symbolic computations.
syms Un n i
symbolic_sum=symsum((i-Un)^2,i,1,n);
SD=simplify((symbolic_sum/n)^1/2)
SD = 
  2 Kommentare
Ashutosh
Ashutosh am 21 Sep. 2022
thank you
Walter Roberson
Walter Roberson am 21 Sep. 2022
Caution, ^1/2 is not ^(1/2)
syms Un n i
symbolic_sum=symsum((i-Un)^2,i,1,n);
SD=simplify((symbolic_sum/n)^(1/2))
SD = 

Melden Sie sich an, um zu kommentieren.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by