Thread Subject: 2008a OOP problem

Subject: 2008a OOP problem

From: Marcel

Date: 7 May, 2008 07:43:03

Message: 1 of 2

I have a very basic question about inheriting from built-in
classes in matlab 2008a. The following class inherits from
double:

classdef graph < double
   methods
       function obj = graph(g)
          % constructor
          
           obj = obj@double(g);
       end
       
       function v = val(g,x)
           v = g(x);
       end
       
   end
end

suppose I now call:

g = graph([0 1 0;1 0 1;0 1 0]);

g(1) will give me the answer: 0

whereas val(g,1) will give me the whole matrix

for some reason the indexing functions of double are not
properly called in the class method. Also, if I define
subsref for this derived class then it will not get called
by the function val(g,x). Am I missing something or is this
a serious bug???

Cheers,

Marcel


Subject: 2008a OOP problem

From: Dave Foti

Date: 7 May, 2008 13:56:44

Message: 2 of 2

Hello Mercel,

In MATLAB, overloaded subsref and subsasgn are not called from inside
methods of a class. You can implement val(g,x) as follows:
  function v = val(g, x)
    d = double(g);
    v = d(x); % or v = graph(d(x)) if you want to return a graph
  end

-Dave

"Marcel " <marcel.van.gerven@gmail.com> wrote in message
news:fvrmi6$f2p$1@fred.mathworks.com...
>I have a very basic question about inheriting from built-in
> classes in matlab 2008a. The following class inherits from
> double:
>
> function v = val(g,x)
> v = g(x);
> end
> suppose I now call:
> g = graph([0 1 0;1 0 1;0 1 0]);
> g(1) will give me the answer: 0
> whereas val(g,1) will give me the whole matrix


Tags for this Thread

Add a New Tag:

Separated by commas
Ex.: root locus, bode

What are tags?

A tag is like a keyword or category label associated with each thread. Tags make it easier for you to find threads of interest.

Anyone can tag a thread. Tags are public and visible to everyone.

rssFeed for this Thread

Public Submission Policy

NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Disclaimer prior to use.

Contact us at files@mathworks.com