Pregunta


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...

más de 8 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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 ...

más de 8 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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...

más de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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...

más de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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...

más de 8 años hace | 1 respuesta | 0

1

respuesta

Respondida
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??

más de 8 años hace | 0

Pregunta


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')...

más de 8 años hace | 3 respuestas | 0

3

respuestas