Skip to content

Instantly share code, notes, and snippets.

@JakobGM
Created October 14, 2015 15:53
Show Gist options
  • Save JakobGM/73eb9142d6c173c80b84 to your computer and use it in GitHub Desktop.
Save JakobGM/73eb9142d6c173c80b84 to your computer and use it in GitHub Desktop.
plot_ET_normal = zeros(size(plot_delta_m));
plot_deltaQ_normal = plot_ET_normal;
i = 0;
for j = plot_delta_m
i = i + 1;
[plot_ET_normal(i) plot_deltaQ_normal(i)] = ET(masse_Al, T_0, plot_delta_m(i), L_N2);
end %for
fig_ET_normal = plot(plot_deltaQ_normal, plot_ET_normal);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment