Hi, just want to confirm whether the code that I have below is indeed correct or there are changes that is needed to solve. I have values of "n' and "d" that I have to input but the summation tool id new to me
syms i n d
SMD = symsum(n*d^3/(n*d^2),i,1,N)
formula:

 채택된 답변

Chunru
Chunru 2022년 7월 6일

1 개 추천

This is symbolic computation. It's not clear what you want to calculate exactly.
If you have value of d and n, you may want to do numerical summation. For example
d = [1 3 4 2];
n = [2 5 6 7];
% sum first, then division
s1 = sum(d)/(sum(n))
s1 = 0.5000
% division first, then sum
s2 = sum(d./n)
s2 = 2.0524

댓글 수: 1

Matthew Charles
Matthew Charles 2022년 7월 6일
Thanks @Chunru duly noted. I will make the necessary adjustments

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Walter Roberson
Walter Roberson 2022년 7월 6일
편집: Walter Roberson 2022년 7월 6일

1 개 추천

never use symsum to form the sum of a vector of values. The variable of summation for symsum is always symbolic, but symbolic values can never be used to index anything.
symsum should only be used when you are working with formulas, such as
symsum((-1)^n / 2^n, n, 1, m)
hoping to get out a function like (-1/2)^m/3 - 1/3

카테고리

도움말 센터File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

제품

릴리스

R2022a

질문:

2022년 7월 6일

댓글:

2022년 7월 6일

Community Treasure Hunt

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

Start Hunting!

Translated by