I have 3 tables of different sizes, T1, T2, T3. In the body of my code I have several functions perform calculations on these tables, one table at a time (by brute force for now), and then save the results. Is it possible to loop through them or do I need to create a pointer to each table? Is a pointer to a table possible in matlab? I can't pass them on to the for loop as I've tried below due to their differing size (and they will always be different)... any help is much welcomed.
T1 =
T2 =
T3 =
for tables_to_be_manipulated = [T1 T2 T3]
mycalcualtionfunction(tables_to_be_manipulated);
mysavefunction(tables_to_be_manipulated);
end
0 Comments
Sign in to comment.