This commit is contained in:
2023-11-14 17:10:27 +08:00
commit d5a822831c
423 changed files with 5909 additions and 0 deletions

View File

@ -0,0 +1,12 @@
function strA=latex(p)
% latex - convert ppoly object into LaTeX string
%
% str=latex(p)
%
% p - a ppoly object
% Copyright (c) Dingyu Xue, Northeastern University, China
% Last modified 18 May, 2022
str=disp(p); str=strrep(str,'*s','s');
if nargout==0, disp(str), else, strA=str; end
end