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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T06:15:27+00:00 2026-06-12T06:15:27+00:00

lets say you have some function x = foo(alpha, beta); and you want to

  • 0

lets say you have some function

x = foo(alpha, beta);

and you want to test the function for different alpha values while saving the different x values with a name associated to the different alpha values.

For example if alpha = 1:1:10;
then then i would like to save x_1 , x_2 ,........,x_9 , x_10 as separate results

I’ve tried running different loops and such but I can’t figure out how to keep the x values from being replaced

  • 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-12T06:15:28+00:00Added an answer on June 12, 2026 at 6:15 am

    There are several ways to do this

    For example, if you want to save results to disk, you can run

    alpha = 1:10;
    
    for ii=1:length(alpha)
    
      x = foo(alpha(ii),beta);
    
      %# save to disk
      save(sprintf('run_%i.mat',ii),'x');
    
    end
    

    If, instead, you want to store all outputs, so that you can plot, for example, you can store them in an array

    alpha = 1:10;
    x = zeros(size(alpha));
    
    for ii=1:length(alpha)
    
      x(ii) = foo(alpha(ii),beta);
    
    end
    
    %# now you can plot the results
    plot(alpha,x)
    

    Note that the above assumes that the output of foo is scalar. If the output is always a m-by-n array, you initialize x as zeros(m,n,length(alpha)), and assign x(:,:,ii) each loop. If the output is arrays of different size, you initialize x as a cell array, as x = cell(size(alpha)), and assign the output of foo to x{ii}.

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

Sidebar

Related Questions

I'm having some Javascript woes, lets say we have a constructor function test(element) {
Let's say I have some simple Javascript like: <script> var hello = function(){ alert(Hello
Let's say I have a UIWebView with some javascript functions. I want those javascript
Lets say we have some basic AR model. class User < ActiveRecord::Base attr_accessible :firstname,
Lets say I have multiple commands like 5000 which updates some column and row
Lets say I have one row with three columns - some buttons on left
Lets say I have a simple 1D array with 10-20 entries. Some will be
Lets say I have if (textbox.Text != null && textbox.Text.Length > someNum) { //some
I'm planning to try contours on some image. Lets say I have three object
Let's say I have a variadic function foo(int tmp, ...) , when calling foo

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.