Norm and mean of a time series

2 views (last 30 days)
Haya Ali
Haya Ali on 1 May 2021
Edited: Haya Ali on 26 May 2021
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

Accepted Answer

Dyuman Joshi
Dyuman Joshi on 1 May 2021
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.

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!