how to change value in element

2 ビュー (過去 30 日間)
vaya putra
vaya putra 2021 年 9 月 26 日
回答済み: Image Analyst 2021 年 9 月 26 日
I have value p consist of 10000x1 elements
to smooth my calculation i need to changes a value at p ( from 4901 to 4949) and (from 4951 to 5000)
the value should p(4951+4949)/2 and so on
if anyone could help me to solve my problem
i am really appriciate
  1 件のコメント
KSSV
KSSV 2021 年 9 月 26 日
You have functions to smooth the data.....read about smooth.

サインインしてコメントする。

採用された回答

KSSV
KSSV 2021 年 9 月 26 日
編集済み: KSSV 2021 年 9 月 26 日
Let P be your 10000x1 array.
p0 = p ;
% To change data from 4901 to 4949
for i = 4901:4949
p(i) = (p(i)+p(i+1))/2 ;
end
You can also do the same without loop.
i = 4901 : 4949 ;
p(i) = (p(i)+p(i+1))/2 ;

その他の回答 (1 件)

Image Analyst
Image Analyst 2021 年 9 月 26 日
You can use movmean(), smooth(), or conv().

カテゴリ

Help Center および File ExchangeMathematics についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by