how to write this range in Matlab?
조회 수: 2 (최근 30일)
이전 댓글 표시
how do we write the following type of range in matlab:
∑_jϵN=m_nj
i.e. j lies in N.
Thanks.
댓글 수: 2
Walter Roberson
2016년 7월 21일
It looks to me as if it might be the sum over those j that are elements of (N = m) to (N = n), with the term to be summed being j ?
답변 (2개)
Steven Lord
2016년 7월 21일
Use linear indexing.
% Generate sample data
x = (1:20).^2;
% Generate a set N over which to sum
N = randperm(20, 5)
% Compute the sum over the set N
sumXN = sum(x(N))
% Since the kth element of x is just k^2, check by summing N^2
% Use .^ to perform element-wise squaring
sumN2 = sum(N.^2)
sumXN and sumN2 should be the same.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!