Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Summing data columns in a series

1 回表示 (過去 30 日間)
jacob Mitch
jacob Mitch 2019 年 10 月 31 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
If I have a 2 data columns and I want to raise them to the power of K and sum the using sigma notation from k=1 to 10 how would I do that. So far I have tried.
Datacolumn1; %defined variables
Datacolumn2;
f=0;
for k=1:10
Data=(Datacolumn1.^k-Datacolumn2.^k).^2; %I want datacolumn1.^k minus datacolumn2.^k all squared summed(sigma notation) from k=1:10
f=f+Data
end
Have I entered that correctly. Any help would be appreciated.

回答 (1 件)

KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 10 月 31 日
編集済み: KALYAN ACHARJYA 2019 年 10 月 31 日
I want to raise them to the power of K and sum the using sigma notation from k=1 to 10
k=?? % define
Data=Datacolumn1.^k+Datacolumn2.^k;
result=sum(Data(1:10));
If your code is correct? then
k=?? % define
Data=(Datacolumn1.^k-Datacolumn2.^k).^2;
result=sum(Data(1:10));
  3 件のコメント
KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 10 月 31 日
Is this?
k=?? % define
Data=(Datacolumn1.^k-Datacolumn2.^k).^2;
result=sum(Data(end-9:end));
jacob Mitch
jacob Mitch 2019 年 11 月 1 日
Hi there would I not need a for loop as k starts at 1 and goes to 10 for sigma. I think its just the root mean square error with k powering the vectors.

Community Treasure Hunt

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

Start Hunting!

Translated by