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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T17:12:34+00:00 2026-05-30T17:12:34+00:00

I want to create a dynamic variable name using Fortran. The variable name will

  • 0

I want to create a dynamic variable name using Fortran.

The variable name will be obtained by concatenating a string and another string/integer. Then I want to use this variable name to store a value or another variable.

e.g.

! assign values to 2 variables

    my_string = h
    my_integer = 1

! perform concatenation resulting in the dynamic variable name,  h1


! Set the value of variable h1 to another integer value

    h1 = 5
  • 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-30T17:12:35+00:00Added an answer on May 30, 2026 at 5:12 pm

    I think you want to use a data structure. If you have pairs or groups of values that go together, then create a derived data type which can hold both. There’s an explanation on this page:

    http://web.mse.uiuc.edu/courses/mse485/comp_info/derived.html

    If you have a list of these pairs (like your string and int above), then you can create an array of these types. Example code below taken from the page linked above:

    type mytype
       integer:: i
       real*8 :: a(3)
    end type mytype
    
    type (mytype) var
    

    Array:

    type (mytype) stuff(3)
    
    var%i = 3
    var%a(1) = 4.0d0
    stuff(1)%a(2) = 8.0d0
    

    An significant benefit of doing this is that you can pass the pairs/groups of items to functions/subroutines together. This is an important programming principle called Encapsulation, and is used extensively in the Object Oriented programming paradigm.

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

Sidebar

Related Questions

Possible Duplicate: Javascript dynamic variable name A very basic question. I want to create
I'm trying to use dynamic variable names. So inside this loop I want to
I'm trying to create a dynamic tag cloud using jquery, I want it to
I'm attempting to use JQuery to create a dynamic page header using an image
May I use variable to declaring cursors?? I want to creating dynamic cursor, how
I want to create dynamic content based on this. I know it's somewhere, as
I want to create dynamic tabPages in TabControl. In each tabPage I create dataGridView
I want to create a Dynamic aspx Page in current solution through code-behind..forexample i
this table i want to create job_id dynamic Jobs Title text Job Description text
I want to create PayPal button with dynamic price (depending from the item) and

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.