MAT2630 Numerical Methods, FA2015

active 8 years, 5 months ago
MAT2630 Numerical Methods, FA2015
This Course is OPEN.
Professor(s)
Department
Mathematics
Course Code
MAT 2630
Semester / Year
Fall 2015
Course Description

An introduction to solving mathematical problems on the computer using a symbolic algebra program with applications drawn from science and engineering. Topics include roots of non-linear functions, interpolation, numerical differentiation and numerical integration.

Acknowledgements

This course was created by: Ezra Halleck

Recent Posts

Welcome!

As software needs of science become larger and larger, there will be a growing need for […] See MoreWelcome!

Recent Comments

No Comments Found

Recent Discussions

Sorry, there were no discussion topics found.

Recent Docs

HW21

%prob 5.1.1 df=inline('log(1+h)/h') out=[]; for i=1:16 out=[out;i 10^-i df(10^-i) df(10^-i)-1]; end format long disp(' i h=10^-i df(h) error') disp(out) %prob 5.1.2 df=inline('(exp(h)-exp(-h))/(2*h)') out=[]; for i=1:12 out=[out;i See MoreHW21

HW20

% problem 3.5.5 a=[0 3 -3 0;2 0 -3 2]; syms t; T=[1 t t^2 t^3]; B1=a*T.'; B2=a*T.'-[0;1]; set(groot,'defaultAxesColorOrder',[0 0 1]) set(groot,'defaultLineLineWidth',2) ezplot(B1(1),B1(2),[0 1]) hold on ezplot(B2(1),B2(2),[0 See MoreHW20