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 8791515
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T22:51:12+00:00 2026-06-13T22:51:12+00:00

I am designing an application that needs to start with no variables at all.

  • 0

I am designing an application that needs to start with no variables at all. But then, at some point, the user will input what he wants to count, say, oranges. Then he will type “oranges”. After he writes oranges, I want Matlab to create a variable “orangesCounter”. Does anyone have an idea how I can achieve this?

Or maybe someone knows the name for what I am trying to do, if it has a specific name. I just don’t know how to properly Google this question since I do not know if there is a name for this type of variable creation.

Thanks!

  • 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-13T22:51:13+00:00Added an answer on June 13, 2026 at 10:51 pm

    You’re setting yourself up for a huge mess, because how are you going to handle variables with names that aren’t known to you in your code? Anyway, it’s your foot, so here’s the gun:

    %# ask for input
    varName = input('what do you want to count? Please enclose the word in single quotes.\n')
    
    %# make the corresponding counter variable, initialize it to 0
    eval(sprintf('%sCounter=0;'varName'));
    

    Here’s a better way to do this:

    variables = struct('name','','value','');
    
    %# ask for the first variable
    variables(1).name = input('what do you want to count? Please enclose the word in single quotes.\n');
    
    %# ask for how many things there are
    variables(1).value = input(sprintf('how many %s are there?\n',variables(1).name));
    
    %# and return feedback
    fprintf('There are %i %s.\n',variables(1).value,variables(1).name);
    

    Note the index – you can have multiple name/value pairs in the structure.

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

Sidebar

Related Questions

I'm designing an application that will allow me to draw some functions on a
I'm current designing a Rails application that uses a form for user login, then
I am designing an application that will display dynamically-generated forms to the user who
I am designing an application that needs to save geometric shapes in a database.
I am designing a web application that needs to visualize large amount of data
Say you’re designing an application that, by requirement, allows a user the flexibility of
We are designing an application that will use Rails and Wordpress to interact with
I am designing an application that needs to load HTML content from a specific
I'm currently about to start designing a new application. The application will allow a
Let's say that I'm currently designing an application where I will need to use

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.