필터 지우기
필터 지우기

please help in typing these sigma equations in matlab script.

조회 수: 1 (최근 30일)
nayan gupta
nayan gupta 2022년 10월 13일
답변: Sai 2022년 10월 18일
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
nayan gupta
nayan gupta 2022년 10월 13일
Thank you for your concern sir.
I would love to give it a try but i am unable to type these sigma equations.
Torsten
Torsten 2022년 10월 13일
sigma is sum() in MATLAB.
v = 1:10;
sum(v)
ans = 55
1 + 2 + 3 + 4 +5 + 6 + 7 + 8 + 9 + 10
ans = 55

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

답변 (1개)

Sai
Sai 2022년 10월 18일
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)

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by