Norm and mean of a time series

2 ビュー (過去 30 日間)
Haya Ali
Haya Ali 2021 年 5 月 1 日
編集済み: Haya Ali 2021 年 5 月 26 日
I have a time series x1 and this time series should have zero mean and unit norm. But when i run the program it gives me the error shown below. Please help me to resolve the problem.
clear all; close all; clc;
x1=[11500.2 11477.9 11417.3 11426.4 11413 11382.9 11375.1 11347.9 11351.1 11329.3]
mean=mean(x1)
for i=1:length(x1)
x1(i)=(x1(i)-mean)/norm
end
norm=norm(x1)
for i=1:length(x1)
x1(i)=x1(i)/norm
end
%%%Error%%%%
Error using norm
Not enough input arguments.
Error in DMN_ROI (line 27)
x1(i)=(x1(i)-mean)/norm

採用された回答

Dyuman Joshi
Dyuman Joshi 2021 年 5 月 1 日
One of the great features of MATLAB is that the error messages it generates are simple and clear. Norm is an inbuilt function which requires an input to it. Just like you used mean() and length() with input x1, norm requires an input as well.
Also I would suggest you to not use mean, norm etc as variables names as they are inbuilt functions in MATLAB and it is not a good practice.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by