필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

problem linking values in loop with symsum

조회 수: 1 (최근 30일)
bus14
bus14 2019년 5월 2일
마감: MATLAB Answer Bot 2021년 8월 20일
Hi community,
I have a normal distribution with mu=100 and sd=10.
I also made a table for this function to compare its values.
pd= makedist('normal','mu',100,'sigma',10)
x = [0:1:200];
y1 = normpdf(x,100,10);
disp('Table using disp command'), disp('x y');
disp([x',y']);
Now I want to create a formula with a summation of k different scenarios. Which should be Sum(p(k)*((l-q)'*z(k)-s'*y(k)) For this I used symsum:
n=200;
k=1:1:n;
Q=y1(k)*((l-q)'*z(k)-s'*y(k))
Q_symsum=symsum(Q,k,1,200)
I have however no idea how I can fix that for example k=64 uses the value of y1 that cooresponds to the x value of 64.
I would like this to work in some sort of loop that it does this for every k from [0 200].
(the values z(k) & y(k) I will later determine using linprog and also some sort of loop

답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by