Mercurial > repos > public > sbplib
comparison +scheme/Scheme.m @ 180:001239c03eb2 feature/beams
Merge with feature/grids.
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Mon, 29 Feb 2016 15:08:01 +0100 |
parents | 8f22829b69d0 77e9f0a85862 |
children | ef41fde95ac4 |
comparison
equal
deleted
inserted
replaced
176:d095b5396103 | 180:001239c03eb2 |
---|---|
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 |