LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
Table.m
1function t = Table(varargin)
2% T = TABLE(VARARGIN)
3
4% This class was initially introduced for octave compatibility in earlier
5% versions
6t = table(varargin{:});
7for i=1:length(varargin)
8 t.Properties.VariableNames{i} = inputname(i);
9end
10end