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

  • SEARCH
  • Home
  • 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 782361
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T20:22:29+00:00 2026-05-14T20:22:29+00:00

My question is easily summarized as: Why does the following not work? teststruct =

  • 0

My question is easily summarized as: “Why does the following not work?”

teststruct = struct('a',3,'b',5,'c',9)

fields = fieldnames(teststruct)

for i=1:numel(fields)
  fields(i)
  teststruct.(fields(i))
end

output:

ans = 'a'

??? Argument to dynamic structure reference must evaluate to a valid field name.

Especially since teststruct.('a') does work. And fields(i) prints out ans = 'a'.

I can’t get my head around 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-05-14T20:22:30+00:00Added an answer on May 14, 2026 at 8:22 pm

    You have to use curly braces ({}) to access fields, since the fieldnames function returns a cell array of strings:

    for i = 1:numel(fields)
      teststruct.(fields{i})
    end
    

    Using parentheses to access data in your cell array will just return another cell array, which is displayed differently from a character array:

    >> fields(1)  % Get the first cell of the cell array
    
    ans = 
    
        'a'       % This is how the 1-element cell array is displayed
    
    >> fields{1}  % Get the contents of the first cell of the cell array
    
    ans =
    
    a             % This is how the single character is displayed
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 517k
  • Answers 517k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer This is really strange and seems to be a bug.… May 16, 2026 at 7:51 pm
  • Editorial Team
    Editorial Team added an answer You have a couple issues. First, ID selectors use #.… May 16, 2026 at 7:51 pm
  • Editorial Team
    Editorial Team added an answer I'd use the .live method rule_selected: function () {} add… May 16, 2026 at 7:51 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I know I can answer this question easily for myself by generatin the code
I'm new to rails and I guess you can answer this question easily. What
I thought this would be something I could easily google, but maybe I'm not
In javascript you can easily create objects and Arrays like so: var aObject =
OpenOffice ships with HSQLDB. Is it possible to easily import the contents of an
This was a hard question for me to summarize so we may need to
(I'm pretty new to WPF, so this question may seem obvious or inconsistent.) There
Easily reproducible in GWT 1.6.4: Tree tree = new Tree(); tree.addItem(new TextBox()); The problem
You can easily play sounds and record sounds using the high level AVAudioPlayer. And
I can easily select a rectangular area in a file provided this area contains

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.