File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 11function varargout = anymatrix(varargin )
22% ANYMATRIX Interface for accessing the Anymatrix collections.
3- % ANYMATRIX is a user interface for the Anymatrix matrix collections .
3+ % ANYMATRIX is a user interface for the Anymatrix matrix collection .
44% It provides commands to list matrices, groups and sets, search for
55% matrices by properties, and obtain the matrices by their IDs.
66%
7- % The interface comes with a built-in matrix collection, but users can
8- % develop their own collections either by creating them from scratch or
9- % extending the built-in collection.
7+ % The interface comes with built-in groups of matrices, but users can
8+ % develop their own groups and make them available to other users.
109%
1110% The built-in collection contains 146 matrices organized in 7 groups:
1211%
174173 command = varargin{2 };
175174 arg = varargin{1 };
176175 end
177- % Allow user's use hyphens instead of underscores, but replace here.
176+ % Allow use of hyphens instead of underscores, but replace here.
178177 if ischar(arg ) && ~any(startsWith({' properties' , ' lookfor' , ...
179178 ' sets' }, command ))
180179 arg = strrep(lower(arg ), ' -' , ' _' );
You can’t perform that action at this time.
0 commit comments