Skip to content

Instantly share code, notes, and snippets.

@adamjgnoel
Last active February 19, 2016 21:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamjgnoel/2db54f57616a67888462 to your computer and use it in GitHub Desktop.
Save adamjgnoel/2db54f57616a67888462 to your computer and use it in GitHub Desktop.
myMean = -5:5; % RV mean
myVariance = 3; % RV variance
myLength = 100; % Length of random vector
for i = 1:length(myMean)
for j = 1:length(myVariance)
for k = 1:length(myLength)
my_simulation_function2(myMean(i), myVariance(j), myLength(k));
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment