Question


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 ago | 0 answers | 0

0

answers

Question


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 ago | 0 answers | 0

0

answers

Question


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 ago | 1 answer | 0

1

answer

Question


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 ago | 1 answer | 0

1

answer

Question


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 ago | 1 answer | 0

1

answer

Answered
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 ago | 0

Question


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 ago | 3 answers | 0

3

answers