How can i work with a set of column vector that has 365 rows. I want to find the mean between the 2- 45 data and then 172 and 356 data only. Not all the mean.

3 ビュー (過去 30 日間)
How can i work with a set of column vector that has 365 rows. I want to find the mean between the 2- 45 data and then 172 and 356 data only. Not all the mean. The range am looking for is 2-45 and also 172-356
  3 件のコメント
Temikunfayo Obayemi
Temikunfayo Obayemi 2021 年 11 月 29 日
How should I type it. A(2:45, 172:356) is this correct

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

回答 (1 件)

chiyaan chandan
chiyaan chandan 2021 年 11 月 29 日
The following code will calculate the means of rows from 2 to 45 and 172 to 365 of every coloumns
clc
clear all
%%
Data=randn(365,5);
MEAN_values=[mean(Data(2:45,:));mean(Data(172:356,:))];

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by