This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function [modes] = compute_modes(Nmode,z,desc) | |
% COMPUTE_MODES example function to demonstrate nested-function handles | |
% John Boyle, April 2015 | |
for jj = 1:Nmode | |
data(jj,:) = sin(2*pi*jj * z); | |
end | |
function plot_modes() | |
figure | |
for ii = 1:Nmode |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Physics simulation with PyODE followed by a (basic) rendering with Vapory | |
See the result here: http://i.imgur.com/TdhxwGz.gifv | |
Zulko 2014 | |
This script is placed in the Public Domain (Licence Creative Commons 0) | |
""" |
NewerOlder