comparison +scheme/Scheme.m @ 178:77e9f0a85862 feature/grids

Removed some grid information from Scheme.
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 29 Feb 2016 14:56:51 +0100
parents ed6a704b028d
children 001239c03eb2 fad5e81389c1
comparison
equal deleted inserted replaced
177:c3378418d49a 178:77e9f0a85862
1 % Start with all matrix returns. When that works see how we should generalize to non-matrix stuff/nonlinear 1 % Start with all matrix returns. When that works see how we should generalize to non-matrix stuff/nonlinear
2 classdef Scheme < handle 2 classdef Scheme < handle
3 properties (Abstract) 3 properties (Abstract)
4 m % Number of points in each direction, possibly a vector
5 order % Order accuracy for the approximation 4 order % Order accuracy for the approximation
6 5
7 % vectors u,v,w depending on dim that gives were gridpoints are in each dimension 6 % vectors u,v,w depending on dim that gives were gridpoints are in each dimension
8 % vectors x,y,z containing the x,y,z values corresponding to each grid point 7 % vectors x,y,z containing the x,y,z values corresponding to each grid point
9 % matrices X,Y,Z with point coordinates as multi dimensional vectors 8 % matrices X,Y,Z with point coordinates as multi dimensional vectors