Skip to content

Commit

Permalink
corrected typo in chebop help text
Browse files Browse the repository at this point in the history
  • Loading branch information
trefethen committed Jul 28, 2021
1 parent 7cadd46 commit cbc1ad4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion @chebop/chebop.m
Expand Up @@ -178,7 +178,7 @@
%
% Example (unknown parameter in differential equation):
%
% % y'' + x.*y + p = 0, y(-1) = 1, y'(-1) = 1, y(1) = 1 can be solved via
% % y'' + x.*y + p = 0, y(-1) = 1, y'(-1) = 0, y(1) = 1 can be solved via
% N = chebop(@(x, y, p) diff(y,2) + x.*y + p);
% N.lbc = @(y, p) [y - 1 ; diff(y)];
% N.rbc = @(y, p) y - 1;
Expand Down

0 comments on commit cbc1ad4

Please sign in to comment.