Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
"help" does not display all help comments in my user functions with R2019a. Works ok in R2016a.
조회 수: 1 (최근 30일)
이전 댓글 표시
Typing "help" in the command line does not display all help lines in my code. For instance:
>> help plotxy
plotxy is a function.
h = plotxy(xydata, varargin)
for this function:
function h = plotxy(xydata, varargin)
% plotxy: plots XY data (Nx2 format)
%
% Syntax:
% plotxy(xydata);
%
% Inputs:
% xydata: Nx2 array of coordinates
%
% Optional inputs:
% same as 'plot' function (e.g. symbol, etc)
%
% Output:
% h: Handle to plotted data (return value of plot())
if (nargin < 1)
error('plotxy: invalid number of arguments');
end;
h = plot(xydata(:,1),xydata(:,2),varargin{:});
This is in R2019a. Works in 2016a (and all previous versions).
댓글 수: 0
답변 (0개)
이 질문은 마감되었습니다.
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!