필터 지우기
필터 지우기

sum in matlab coding

조회 수: 2 (최근 30일)
ali hassan
ali hassan 2022년 2월 12일
편집: DGM 2022년 2월 12일
what is the difference between
sum(a(1):a(3)) and sum(a(1:3))?

채택된 답변

DGM
DGM 2022년 2월 12일
편집: DGM 2022년 2월 12일
The first case is summing a linear increasing series between two values stored in a vector. The second is the sum of a subvector within a vector.
a = [5 -10 15 -20]
a = 1×4
5 -10 15 -20
a(1):a(3) % linear vector from 5 to 20 in steps of 1
ans = 1×11
5 6 7 8 9 10 11 12 13 14 15
a(1:3) % elements 1 through 3 of the vector a
ans = 1×3
5 -10 15
sum(a(1):a(3))
ans = 110
sum(a(1:3))
ans = 10

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by