From 82e6cf7d1046d6cee16f7e8b044ec33e7ec6c4b7 Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Sun, 16 Feb 2020 14:26:55 +0700 Subject: [usth] Numerical Method is MATH2.4 --- usth/MATH2.4/final/EX3.m | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 usth/MATH2.4/final/EX3.m (limited to 'usth/MATH2.4/final/EX3.m') diff --git a/usth/MATH2.4/final/EX3.m b/usth/MATH2.4/final/EX3.m new file mode 100644 index 0000000..99240f8 --- /dev/null +++ b/usth/MATH2.4/final/EX3.m @@ -0,0 +1,16 @@ +disp ("Question 3:"); +disp ("(a)"); +function y = f (x) + y = 2 + x.^2 + exp(x.*2 + 1); +endfunction +h = 0.005; +printf ("By forward difference with h = 0.05, f'(1.35) = %g\n", + (f (1.35 + h) - f (1.35)) / h); + +disp ("(b)"); +disp ("I am unsure if diff is different on Matlab, but on octave,"); +disp ("it's simply taking differences between consecutive elements."); +x = [1.35, 1.35+h]; +printf ("Using diff with h = 0.05, we get same result, f'(1.35) = %g\n", + (diff (f (x)) / h)); +disp ("Using symbolical methods, f'(1.35) = 83.5946 which is quite close."); -- cgit 1.4.1