cut samples - interpolation
by Aslak Grinsted
16 May 2003
(Updated 24 Mar 2006)
Interpolates irregular spaced data by 'cutting' the x axis into specified intervals.
|
Watch this File
|
| File Information |
| Description |
A useful function for putting irregular spaced data on a regular spaced axis. Also works when the data locally has higher sampling resolution than the desired.
Example:
%create fake irregular spaced data
x=sort(rand(30,1));
y=sin(x*5)+randn(30,1)*.3;
%define the start and end intervals we want to have representative values of.
xsi=(-.2:.3:1.3)';
xei=xsi+.3;
%cut data into intervals ranging from xsi to xei:
yi=cutsamples(x,y,xei,xsi); |
| MATLAB release |
MATLAB 5.3 (R11)
|
|
Tags for This File
|
| Everyone's Tags |
|
| Tags I've Applied |
|
| Add New Tags |
Please login to tag files.
|
| Comments and Ratings (1) |
| 28 Mar 2006 |
Lalam Mahapatra
|
|
|
| Updates |
| 24 Mar 2006 |
Updated to that it can handle series with nans |
|
Contact us at files@mathworks.com