| Author |
Comment/Response |
Amin
|
09/06/12 5:13pm
Hi,
In my analysis I need to perform different functions on different data sets.for this, I used several Do loops like:
Do[ func1[dataset1[i]],{i,100]
Do[ func2[dataset2[i]],{i,100]
Do[ func3[dataset3[i]],{i,100]
.
.
I tried to do all those in one loop with this:
Do[
func1[dataset1[i]];
func2[dataset2[i]];
func3[dataset3[i]],{i,100}]
but it didn't work.Any suggestion??
Thanks,
Amin.
URL: , |
|