Skip to content

Commit

Permalink
update matlab comments and texinfo fix noted while running make matlab
Browse files Browse the repository at this point in the history
  • Loading branch information
cbm755 committed Jul 14, 2014
1 parent 0d27224 commit 28d0f1a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.matlab.md
Expand Up @@ -7,8 +7,8 @@ Formatting: Matlab uses a different formatting for comment headers.
Most of the .m files have been autoconverted from the GNU Octave
versions.

Tests: Many .m files have tests built-in following the function using
Octave's test framework. Some effort to run these on Matlab? But it
would be a good idea.
Tests: Many .m files have tests built-in using using Octave's test framework.
These have been autoextracted for Matlab (which unfortunately doesn't use the
same test framework).


10 changes: 5 additions & 5 deletions inst/@sym/symreplace.m
Expand Up @@ -32,7 +32,7 @@
%% One mode of operation is similar to @code{subs()}:
%% @example
%% syms x y
%% f = {x; x^2; sin(x)};
%% f = @{x; x^2; sin(x)@};
%% f = symreplace(f, x, y)
%% f = symreplace(f, 'x', y) % alt.
%% @end example
Expand Down Expand Up @@ -80,10 +80,10 @@
%% the base context instead.
%%
%% Note for developers: if you want to call this from your function
%% but have it work on the 'caller' context @strong{of your
%% function}, that unfortunately does not seem to be possible.
%% Copy-paste the highlighted bits of this code into your function
%% instead (see @code{assume()} for example.
%% but have it work on the 'caller' context
%% @strong{of your function}, that unfortunately does not seem to
%% be possible. Copy-paste the highlighted bits of this code into
%% your function instead (see @code{assume} for example).
%%
%% @seealso{assume, assumeAlso, assumptions, sym, syms}
%% @end deftypefn
Expand Down

0 comments on commit 28d0f1a

Please sign in to comment.