Symsum every other step

조회 수: 4 (최근 30일)
Christian S.
Christian S. 2020년 9월 29일
편집: Alan Stevens 2020년 9월 30일
Hi everybody,
I'm trying to get a symsum runnin' with a count of every other step.
The Formula itself looks like this:
My current code
a=2:2:10
syms p [1 size_x_r_sampling_meter];
f=k^2*p
f1=symsum(f,k,a)
obvjously doesn't work...
Could you please give me a hint, how to solve this problem?
Very best
Christian

채택된 답변

Alan Stevens
Alan Stevens 2020년 9월 29일
Does this help:
syms k p
a = [1 5];
f=@(k,p) (2*k)^2*p;
f1=symsum(f,k,a)
f1 =
220*p
  댓글 수: 2
Christian S.
Christian S. 2020년 9월 29일
Hi Alan,
thank you for your answer. Sadly not, the function in my script was just a placeholder, the formula I have to go to is more complex.
Thank you anyways and very best
Christian
Alan Stevens
Alan Stevens 2020년 9월 29일
편집: Alan Stevens 2020년 9월 30일
The principle of replacing j by, say, j = 2n, and then having n go from 1 to (M-1)/2 still holds.

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by