view test/bug-59704/bug59704_1.m @ 30949:7d99816e9709 stable

ls.m: Improve wording in docstring (bug #62282).
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 21 Apr 2022 17:52:31 +0200
parents 09f99fe5190c
children
line wrap: on
line source

classdef bug59704_1 < handle

  properties
    p
  endproperties

  methods

    function n = numel (this, varargin)
      n = 1;
    endfunction

    function test (this)
      [~, this.p] = bug59704_1_test (this.p);
    endfunction

  endmethods

endclassdef