source: prdatasets/pr_dataset.m @ 84

Last change on this file since 84 was 81, checked in by bduin, 11 years ago
File size: 218 bytes
Line 
1%PR_DATASET  Create DATASET (PRTools4) or PRDATASET (PRTools5)
2%
3%   A = PR_DATASET(...)
4
5function a = pr_dataset(varargin)
6
7if prversion < 5
8  a = dataset(varargin{:});
9else
10  a = prdataset(varargin{:});
11end
Note: See TracBrowser for help on using the repository browser.