Skip to content
Snippets Groups Projects
Commit 0fdc7d63 authored by Laurie Boffelli's avatar Laurie Boffelli
Browse files

Correction training

parent 0b97a01f
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ Y_training = y_training;
k=1;
X_training=[];
while k<=22
X=[0:1/(C(k,1)-1):1];
X=[0:1/(C(k,1)-2):1];
X_training = [X_training, X];
k=k+1;
end
......
No preview for this file type
......@@ -57,10 +57,10 @@ k=1;
X_training=[];
while k<=22
if C(k,3)>0
X=[0:1/(C(k,3)-C(k,1)):1];
X=[0:1/(C(k,3)-C(k,1)-1):1];
X_training = [X_training, X];
else
X=[0:1/(C(k,2)-C(k,1)):1];
X=[0:1/(C(k,2)-C(k,1)-1):1];
X_training = [X_training, X];
end
k=k+1;
......
No preview for this file type
......@@ -51,7 +51,7 @@ k=1;
X_training=[];
while k<=22
if C(k,3)>0
X=[0:1/(C(k,2)-C(k,3)):1];
X=[0:1/(C(k,2)-C(k,3)-1):1];
X_training = [X_training, X];
end
k=k+1;
......
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment