Help with looping variables
Mostrar comentarios más antiguos
Hi guys!
I have run into problems when I try to make a loop create variables and I am not very advanced in matlab. Here is what I am trying to do:
I have a .csv-file containing columns with data, each called test1, test2 and so forth. For each column, I am trying to create a variable in matlab - something like:
for i = 1:10
test(i) = csvvariable(:,i)
end
What I have done so far is manually creating a variable for each column in the .csv-file:
rfdtest = csvread('Hamstring.csv', 8, 1);
test1 = rfdtest(:,1);
if test1(1)>0
test1=[0;test1]
end
test2 = rfdtest(:,2);
if test2(1)>0
test2=[0;test2]
end
test3 = rfdtest(:,3);
if test3(1)>0
test3=[0;test3]
end
test4 = rfdtest(:,4);
if test4(1)>0
test4=[0;test4]
end
test5 = rfdtest(:,5);
if test5(1)>0
test5=[0;test5]
end
test6 = rfdtest(:,6);
if test6(1)>0
test6=[0;test6]
end
test7 = rfdtest(:,7);
if test7(1)>0
test7=[0;test7]
end
test8 = rfdtest(:,8);
if test8(1)>0
test8=[0;test8]
end
test9 = rfdtest(:,9);
if test9(1)>0
test9=[0;test9]
end
test10 = rfdtest(:,10);
if test10(1)>0
test10=[0;test10]
end
Later, I am going to do some calculations on each column, so this method will result in a lot of code.
Thanks in advance and feel free to ask for additional details!
2 comentarios
"I have run into problems when I try to make a loop create variables and I am not very advanced in matlab."
Magically accessing variable names is one way that beginners force themselves into writing slow, complex, buggy code that is hard to debug. Read this to know why:
The simplest alternative is to use indexing to access you data, which is neat, simple, easy to debug, and highly efficient (unlike what you are trying to do). All of the data are already trivially accessible using indexing from the variable csvvariable. Note that splitting up the data (pointlessly) duplicates it in memory.
"What I have done so far is manually creating a variable for each column in the .csv-file:"
Seems complex. Copy-and-pasting code is a sign that you are doing something wrong. Instead of copy-and-pasting code, get the computer to do it for you using loops and indexing. Copy-and-pasting causes bugs (e.g. your code repeating exactly the same test) and bloats the code.
Mikkel Eskildsen
el 5 de Nov. de 2018
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Choose and Parameterize Blocks en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!