Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7708975
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T00:44:52+00:00 2026-06-01T00:44:52+00:00

dataset allows us to do: x = rand(10, 1); y = rand(10, 1); d

  • 0

dataset allows us to do:

x = rand(10, 1); 
y = rand(10, 1);
d = dataset(x, y);

d will have 2 variables with name ‘x’ and ‘y’ and content x and y – variable names are obtained from the workspace. The dataset() call above is equivalent to:

d = dataset({'x', x}, {'y', y});

when the names are specified.

Now if I have a subclass of dataset:

classdef mydataset < dataset
properties
end

methods
    function spec = mydataset(varargin)
        spec = spec@dataset(varargin{:});    
        % Add some more things to this subclass because that's the reason I need a subclass
    end 
end 
end    

The problem is, if I call:

d = mydataset(x);

d will have the variable x but the name is just ‘var1’. The workspace name ‘x’ is not recognized. Unless I call:

d = mydataset({'x', x});

I will not get the same effect.

Any solution?

Note that I do not want to lose other argument parsing abilities of dataset(). It can process really complicated arguments, and I do want to preserve that.

http://www.mathworks.com/help/toolbox/stats/dataset.html

A = dataset(varspec,'ParamName',Value)
A = dataset('File',filename,'ParamName',Value)
A = dataset('XLSFile',filename,'ParamName',Value)
A = dataset('XPTFile',xptfilename,'ParamName',Value)

The example in this question with mydataset(x) is the a simple and commonly encountered situation that mydataset() can’t pass things to dataset() and obtain the same results. Thus it’s an important situation. But to do just that and lose other capabilities of dataset() is not worth it.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T00:44:53+00:00Added an answer on June 1, 2026 at 12:44 am

    One option is to capture the argument names yourself and build a cell that you then pass in to the dataset constructor, i.e. you build a cell that looks like

    {{Var1 VarName1}, {Var2 VarName2}, ...}
    

    A quick and dirty solution:

    classdef mydataset < dataset
    
        properties
        end
    
        methods
    
            function self = mydataset(varargin)
    
                for k = 1:nargin
                    args{k} = {varargin{k}, inputname(k)};
                end
    
                self = self@dataset(args{:});
    
            end
    
        end
    
    end
    

    Now if I call it:

    >> x=1;
    >> y=2;
    >> mydataset(x,y)
    ans = 
        x    y
        1    2
    

    Of course, you’ve now lost the ability to call mydataset with the {val, valname},... syntax, but maybe that’s worth giving up. If you also wanted to be able to do that, you would need to write a conditional that checks the format of your input first, and builds args differently depending on the input format.

    Note that you can’t do the obvious thing and put your calls to the superclass constructor inside two branches of an if statement. In Matlab, calls to the superclass have to be at the top level (i.e. you can’t put them inside loops or conditionals).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a DataSet which I get a DataTable from that I am being
When I have a simple DataSet that has a table with simple column names
If you have to retrieve data from a database and bring this dataset to
I have a class which retrieves the data from DB. [Table(Name = Ilanlar)] public
I have a dataset that I have modified into an xml document and then
I have a dataset that has two tables in it. I want to do
I have a DataSet that contains a few columns. One of these columns is
I have a DataSet consisting of XML data, I can easily output this to
Suppose I have a dataset with those two immortal tables: Employee & Order Emp
I have a DataSet with a DataTable that correctly fills a single DataRow through

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.