X-Git-Url: http://gitweb.michael.orlitzky.com/?p=octave.git;a=blobdiff_plain;f=run-tests.m;h=2ff59a3e7081106154661b3b33b3c737e66e71c8;hp=2892ba0e84f916571960177c62bb297068d7b448;hb=24b6a4fe081d46f6a2f7ee2a3161401256d21fb5;hpb=b075adde3bee54eaded3dd161f037e3a8de88618 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);