How to generate all possible sequences for 8 possible parametersGenerating a random sequence with no repeatsRollback sequenceAwkward criteria when generating random sequenceDifferences between Octave and MATLAB?finding sequences from small length sequencesHow to calculate possible word subsequences matching a pattern?All possible combinations such that sum of all numbers is a fixed numberAre inserts with sequence numbers nextval atomic for this number?generate sequence (and starting over in case of a recurrence) and add new column with highest number per sequence, within group, in RHow to find repeated patterns of numbers in the rows of a matrix
How will losing mobility of one hand affect my career as a programmer?
How do I rename a LINUX host without needing to reboot for the rename to take effect?
Trouble understanding overseas colleagues
Modify casing of marked letters
Irreducibility of a simple polynomial
What is difference between behavior and behaviour
Why did Kant, Hegel, and Adorno leave some words and phrases in the Greek alphabet?
What is the oldest known work of fiction?
Is it correct to write "is not focus on"?
What's a natural way to say that someone works somewhere (for a job)?
How could Frankenstein get the parts for his _second_ creature?
Why does John Bercow say “unlock” after reading out the results of a vote?
How can I use the arrow sign in my bash prompt?
What defines a dissertation?
What would be the benefits of having both a state and local currencies?
Displaying the order of the columns of a table
Is the destination of a commercial flight important for the pilot?
Opposite of a diet
Finding all intervals that match predicate in vector
voltage of sounds of mp3files
Curses work by shouting - How to avoid collateral damage?
If you attempt to grapple an opponent that you are hidden from, do they roll at disadvantage?
What would happen if the UK refused to take part in EU Parliamentary elections?
Is there an Impartial Brexit Deal comparison site?
How to generate all possible sequences for 8 possible parameters
Generating a random sequence with no repeatsRollback sequenceAwkward criteria when generating random sequenceDifferences between Octave and MATLAB?finding sequences from small length sequencesHow to calculate possible word subsequences matching a pattern?All possible combinations such that sum of all numbers is a fixed numberAre inserts with sequence numbers nextval atomic for this number?generate sequence (and starting over in case of a recurrence) and add new column with highest number per sequence, within group, in RHow to find repeated patterns of numbers in the rows of a matrix
I'm trying to come up with a way to auto generate all possible sequences for 8 total parameters.
When I say sequences here is what I mean:
8 total parameters available (A,B,C,D,E,F,G,H).
I need to generate a list of all the possible sequences starting with only selecting one parameter by itself. So the numbers in the example below show the order in which the parameters will be selected. So no number can be repeated in the same row.
Example of the start of the sequences:
Can this be done somehow in Matlab or even VBA?
matlab sequence
New contributor
add a comment |
I'm trying to come up with a way to auto generate all possible sequences for 8 total parameters.
When I say sequences here is what I mean:
8 total parameters available (A,B,C,D,E,F,G,H).
I need to generate a list of all the possible sequences starting with only selecting one parameter by itself. So the numbers in the example below show the order in which the parameters will be selected. So no number can be repeated in the same row.
Example of the start of the sequences:
Can this be done somehow in Matlab or even VBA?
matlab sequence
New contributor
1
What do the numbers mean?
– Ander Biguri
Mar 21 at 15:47
The numbers are just the order in which the parameters are selected. So, no numbers can be repeated in the same row.
– acer14
Mar 21 at 16:17
Before you try to do it, compute how many of them you will have. This looks like you will need more RAM than what you have, but I am bad a combinatorics.
– Ander Biguri
Mar 21 at 22:04
add a comment |
I'm trying to come up with a way to auto generate all possible sequences for 8 total parameters.
When I say sequences here is what I mean:
8 total parameters available (A,B,C,D,E,F,G,H).
I need to generate a list of all the possible sequences starting with only selecting one parameter by itself. So the numbers in the example below show the order in which the parameters will be selected. So no number can be repeated in the same row.
Example of the start of the sequences:
Can this be done somehow in Matlab or even VBA?
matlab sequence
New contributor
I'm trying to come up with a way to auto generate all possible sequences for 8 total parameters.
When I say sequences here is what I mean:
8 total parameters available (A,B,C,D,E,F,G,H).
I need to generate a list of all the possible sequences starting with only selecting one parameter by itself. So the numbers in the example below show the order in which the parameters will be selected. So no number can be repeated in the same row.
Example of the start of the sequences:
Can this be done somehow in Matlab or even VBA?
matlab sequence
matlab sequence
New contributor
New contributor
edited Mar 21 at 17:45
acer14
New contributor
asked Mar 21 at 15:23
acer14acer14
32
32
New contributor
New contributor
1
What do the numbers mean?
– Ander Biguri
Mar 21 at 15:47
The numbers are just the order in which the parameters are selected. So, no numbers can be repeated in the same row.
– acer14
Mar 21 at 16:17
Before you try to do it, compute how many of them you will have. This looks like you will need more RAM than what you have, but I am bad a combinatorics.
– Ander Biguri
Mar 21 at 22:04
add a comment |
1
What do the numbers mean?
– Ander Biguri
Mar 21 at 15:47
The numbers are just the order in which the parameters are selected. So, no numbers can be repeated in the same row.
– acer14
Mar 21 at 16:17
Before you try to do it, compute how many of them you will have. This looks like you will need more RAM than what you have, but I am bad a combinatorics.
– Ander Biguri
Mar 21 at 22:04
1
1
What do the numbers mean?
– Ander Biguri
Mar 21 at 15:47
What do the numbers mean?
– Ander Biguri
Mar 21 at 15:47
The numbers are just the order in which the parameters are selected. So, no numbers can be repeated in the same row.
– acer14
Mar 21 at 16:17
The numbers are just the order in which the parameters are selected. So, no numbers can be repeated in the same row.
– acer14
Mar 21 at 16:17
Before you try to do it, compute how many of them you will have. This looks like you will need more RAM than what you have, but I am bad a combinatorics.
– Ander Biguri
Mar 21 at 22:04
Before you try to do it, compute how many of them you will have. This looks like you will need more RAM than what you have, but I am bad a combinatorics.
– Ander Biguri
Mar 21 at 22:04
add a comment |
1 Answer
1
active
oldest
votes
You can start with ndgrid. You can adapt what's below:
[X,Y] = ndgrid(1:2:19,2:2:12);
ctr = 1;
for i = 1:size(X,1)
for j = 1:size(Y,2)
params(ctr,:) = [X(i,1), Y(1,j)];
ctr = ctr+1;
end
end
1
Isn't that double loop the same asparams = [X(:), Y(:)]
?
– Cris Luengo
Mar 21 at 16:52
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
acer14 is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55283834%2fhow-to-generate-all-possible-sequences-for-8-possible-parameters%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can start with ndgrid. You can adapt what's below:
[X,Y] = ndgrid(1:2:19,2:2:12);
ctr = 1;
for i = 1:size(X,1)
for j = 1:size(Y,2)
params(ctr,:) = [X(i,1), Y(1,j)];
ctr = ctr+1;
end
end
1
Isn't that double loop the same asparams = [X(:), Y(:)]
?
– Cris Luengo
Mar 21 at 16:52
add a comment |
You can start with ndgrid. You can adapt what's below:
[X,Y] = ndgrid(1:2:19,2:2:12);
ctr = 1;
for i = 1:size(X,1)
for j = 1:size(Y,2)
params(ctr,:) = [X(i,1), Y(1,j)];
ctr = ctr+1;
end
end
1
Isn't that double loop the same asparams = [X(:), Y(:)]
?
– Cris Luengo
Mar 21 at 16:52
add a comment |
You can start with ndgrid. You can adapt what's below:
[X,Y] = ndgrid(1:2:19,2:2:12);
ctr = 1;
for i = 1:size(X,1)
for j = 1:size(Y,2)
params(ctr,:) = [X(i,1), Y(1,j)];
ctr = ctr+1;
end
end
You can start with ndgrid. You can adapt what's below:
[X,Y] = ndgrid(1:2:19,2:2:12);
ctr = 1;
for i = 1:size(X,1)
for j = 1:size(Y,2)
params(ctr,:) = [X(i,1), Y(1,j)];
ctr = ctr+1;
end
end
answered Mar 21 at 16:20
Suhas CSuhas C
1544
1544
1
Isn't that double loop the same asparams = [X(:), Y(:)]
?
– Cris Luengo
Mar 21 at 16:52
add a comment |
1
Isn't that double loop the same asparams = [X(:), Y(:)]
?
– Cris Luengo
Mar 21 at 16:52
1
1
Isn't that double loop the same as
params = [X(:), Y(:)]
?– Cris Luengo
Mar 21 at 16:52
Isn't that double loop the same as
params = [X(:), Y(:)]
?– Cris Luengo
Mar 21 at 16:52
add a comment |
acer14 is a new contributor. Be nice, and check out our Code of Conduct.
acer14 is a new contributor. Be nice, and check out our Code of Conduct.
acer14 is a new contributor. Be nice, and check out our Code of Conduct.
acer14 is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55283834%2fhow-to-generate-all-possible-sequences-for-8-possible-parameters%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
What do the numbers mean?
– Ander Biguri
Mar 21 at 15:47
The numbers are just the order in which the parameters are selected. So, no numbers can be repeated in the same row.
– acer14
Mar 21 at 16:17
Before you try to do it, compute how many of them you will have. This looks like you will need more RAM than what you have, but I am bad a combinatorics.
– Ander Biguri
Mar 21 at 22:04