提问


Error calculation is not working
w1 = 0.4762; w2 = -0.2152; for k= 2: size(B) B(k)= A(k)*w1+A(k-1)*w2; end disp(y); f...

8 years 前 | 0 个回答 | 0

0

个回答

提问


Equation Solving Matter. Unknown coefficients
I have the equation y(n)=x(n)*w1+x(n-1)*w2 And I need to find w1,w2 as they are unknown. I don't think that the code I wrote ...

8 years 前 | 0 个回答 | 0

0

个回答

提问


Need to obtain two unknown coefficients
load('S_chest.mat'); load('S_abdomen.mat'); x= S_chest; y= S_abdomen; A=zeros(5955,2); A(1,1)=x(1); for n= 2...

8 years 前 | 1 个回答 | 0

1

个回答

提问


double Conversion to double from struct is not possible.
Error using ==> double Conversion to double from struct is not possible. clc; clear all; x = load('S_chest...

8 years 前 | 1 个回答 | 0

1

个回答

提问


Error using ==> mrdivide Matrix dimensions must agree.
Almost Done A small detail left. clc; clear all; load('S_chest.mat'); load('S_abdomen.mat'); x= S_ch...

8 years 前 | 1 个回答 | 0

1

个回答

已回答
Attempted to access x(12); index out of bounds because numel(x)=11.
Yeah. How do I assign all of 5953 data that the S_chest.mat file containts (excel file) to X??

8 years 前 | 0

提问


Attempted to access x(12); index out of bounds because numel(x)=11.
What's wrong with this line A(n,1)= x(n); ?? I find it perfectly correct. x = load('S_chest'); y = load('S_abdomen')...

8 years 前 | 3 个回答 | 0

3

个回答