필터 지우기
필터 지우기

how to represent the mathematical parameter in matlab?

조회 수: 2 (최근 30일)
Dhines
Dhines 2012년 9월 28일
Here,
how to write the summation and its limits in matlab.

채택된 답변

Wayne King
Wayne King 2012년 9월 28일
편집: Wayne King 2012년 9월 28일
Is this a question about a symbolic computation, or a numerical one?
x = randn(100,1);
% sum of x for elements 10 to 30
sum(x(20:30))
Symbolic
syms k
% sum of k from k =1 to k= 10
symsum(k,1,10)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by