octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #62001] feval does not work for static class m


From: Rik
Subject: [Octave-bug-tracker] [bug #62001] feval does not work for static class methods (does on Matlab)
Date: Tue, 8 Feb 2022 00:42:25 -0500 (EST)

Update of bug #62001 (project octave):

                  Status:                    None => Confirmed              
                 Release:                   6.4.0 => dev                    

    _______________________________________________________

Follow-up Comment #2:

Confirmed.  Changing to the "dev" release since the issue is still present
there and it will need to be fixed there first.

It seems that the class name, which amounts to a scope operator, is ignored. 
I tried this code


classdef test_feval_static_method_with_name_ls

    methods (Static)

        function x = ls ()

            x = 1;

        end

    end

end


and when executing


feval ('test_feval_static_method_with_name_ls.ls')


the actual function that gets executed is from ls.m.

    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?62001>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]