X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;ds=sidebyside;f=run-tests.m;h=2ff59a3e7081106154661b3b33b3c737e66e71c8;hb=24b6a4fe081d46f6a2f7ee2a3161401256d21fb5;hp=2892ba0e84f916571960177c62bb297068d7b448;hpb=d7a73d33b0567c9abd72151b2972d7c0eb66e6a1;p=octave.git diff --git a/run-tests.m b/run-tests.m index 2892ba0..2ff59a3 100755 --- a/run-tests.m +++ b/run-tests.m @@ -102,3 +102,16 @@ expected_root = [1.33635; 1.75424]; unit_test_equals("Homework #3 problem #4 root is correct", ... expected_root, ... actual_root); + + + +f = @(x,y) y; +x0 = 0; +y0 = 1; +h = 1; +actual_y = forward_euler1(x0, y0, f, h); +expected_y = 2; + +unit_test_equals("Forward Euler works for one step", ... + expected_y, ... + actual_y);