Generating a list with duplicate entriesMapThread with List ManupulationCombine nested list entriesList all...
Does Ohm's law (V=IR) imply causation?
School performs periodic password audits. Is my password compromised?
How do we objectively assess if a dialogue sounds unnatural or cringy?
What can I do if someone tampers with my SSH public key?
How to write a chaotic neutral protagonist and prevent my readers from thinking they are evil?
Giving a talk in my old university, how prominently should I tell students my salary?
What happens when you cast a spell on yourself with spell turning on?
How does Sundering Titan handle snow lands?
How does a sound wave propagate?
newcommand: Using one parameter as the default for the other
Naming Characters after Friends/Family
SHA 256 Algorithm
If nine coins are tossed, what is the probability that the number of heads is even?
Why does this boat have a landing pad? (SpaceX's GO Searcher) Any plans for propulsive capsule landings?
First time traveler, what plane ticket?
Short story about an infectious indestructible metal bar?
How does learning spells work when leveling a multiclass character?
Is this lemma equivalent to the axiom of choice?
Should I use HTTPS on a domain that will only be used for redirection?
Vector-transposing function
Does the US political system, in principle, allow for a no-party system?
Ultrafilters as a double dual
Paper published similar to PhD thesis
Create chunks from an array
Generating a list with duplicate entries
MapThread with List ManupulationCombine nested list entriesList all “duplicate” elements in TallyGenerating a List of Numbers with “Table” Causing DeviationDuplicate rows with multiple entriesHow to Floor specific entries of list within a matrix?Map entries of StructuredArrayGenerating list of labeled stringDeleting duplicate equations from a list of equationsFlattening a list desiring a specific format
$begingroup$
How can I get a function that gives the following output?
listX = {a, b, c, d}
numberX = 3
myDuplicatesList[listX, numberX]
{{a,a,a},{b,b,b},{c,c,c},{d,d,d}}
list-manipulation
New contributor
lisa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
$endgroup$
add a comment |
$begingroup$
How can I get a function that gives the following output?
listX = {a, b, c, d}
numberX = 3
myDuplicatesList[listX, numberX]
{{a,a,a},{b,b,b},{c,c,c},{d,d,d}}
list-manipulation
New contributor
lisa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
$endgroup$
1
$begingroup$
Wolfram Challenges.
$endgroup$
– J. M. is computer-less♦
29 mins ago
add a comment |
$begingroup$
How can I get a function that gives the following output?
listX = {a, b, c, d}
numberX = 3
myDuplicatesList[listX, numberX]
{{a,a,a},{b,b,b},{c,c,c},{d,d,d}}
list-manipulation
New contributor
lisa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
$endgroup$
How can I get a function that gives the following output?
listX = {a, b, c, d}
numberX = 3
myDuplicatesList[listX, numberX]
{{a,a,a},{b,b,b},{c,c,c},{d,d,d}}
list-manipulation
list-manipulation
New contributor
lisa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
lisa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 58 mins ago
MarcoB
37k556113
37k556113
New contributor
lisa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 1 hour ago
lisalisa
161
161
New contributor
lisa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
lisa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
lisa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
$begingroup$
Wolfram Challenges.
$endgroup$
– J. M. is computer-less♦
29 mins ago
add a comment |
1
$begingroup$
Wolfram Challenges.
$endgroup$
– J. M. is computer-less♦
29 mins ago
1
1
$begingroup$
Wolfram Challenges.
$endgroup$
– J. M. is computer-less♦
29 mins ago
$begingroup$
Wolfram Challenges.
$endgroup$
– J. M. is computer-less♦
29 mins ago
add a comment |
4 Answers
4
active
oldest
votes
$begingroup$
one way might be
listX = {a, b, c, d}
numberX = 3
Transpose[{listX}].{Table[1, {numberX}]}

$endgroup$
add a comment |
$begingroup$
Transpose@ConstantArray[listX, numberX]
{{a, a, a}, {b, b, b}, {c, c, c}, {d, d, d}}
$endgroup$
add a comment |
$begingroup$
Alternatively:
listX = {a, b, c};
numberX = 3;
Table[ConstantArray[i, numberX], {i, listX}]
{{a, a, a}, { b, b, b}, {c, c, c}}
Or:
listX={a, b, c, d};
numberX=3;
Transpose@Table[i, {numberX}, {i, listX}]
$endgroup$
add a comment |
$begingroup$
Transpose[{listX}[[ConstantArray[1, numberX]]]]
$endgroup$
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "387"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
});
}
});
lisa 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%2fmathematica.stackexchange.com%2fquestions%2f192880%2fgenerating-a-list-with-duplicate-entries%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
one way might be
listX = {a, b, c, d}
numberX = 3
Transpose[{listX}].{Table[1, {numberX}]}

$endgroup$
add a comment |
$begingroup$
one way might be
listX = {a, b, c, d}
numberX = 3
Transpose[{listX}].{Table[1, {numberX}]}

$endgroup$
add a comment |
$begingroup$
one way might be
listX = {a, b, c, d}
numberX = 3
Transpose[{listX}].{Table[1, {numberX}]}

$endgroup$
one way might be
listX = {a, b, c, d}
numberX = 3
Transpose[{listX}].{Table[1, {numberX}]}

answered 1 hour ago
NasserNasser
58.1k489206
58.1k489206
add a comment |
add a comment |
$begingroup$
Transpose@ConstantArray[listX, numberX]
{{a, a, a}, {b, b, b}, {c, c, c}, {d, d, d}}
$endgroup$
add a comment |
$begingroup$
Transpose@ConstantArray[listX, numberX]
{{a, a, a}, {b, b, b}, {c, c, c}, {d, d, d}}
$endgroup$
add a comment |
$begingroup$
Transpose@ConstantArray[listX, numberX]
{{a, a, a}, {b, b, b}, {c, c, c}, {d, d, d}}
$endgroup$
Transpose@ConstantArray[listX, numberX]
{{a, a, a}, {b, b, b}, {c, c, c}, {d, d, d}}
answered 20 mins ago
RomanRoman
2,674717
2,674717
add a comment |
add a comment |
$begingroup$
Alternatively:
listX = {a, b, c};
numberX = 3;
Table[ConstantArray[i, numberX], {i, listX}]
{{a, a, a}, { b, b, b}, {c, c, c}}
Or:
listX={a, b, c, d};
numberX=3;
Transpose@Table[i, {numberX}, {i, listX}]
$endgroup$
add a comment |
$begingroup$
Alternatively:
listX = {a, b, c};
numberX = 3;
Table[ConstantArray[i, numberX], {i, listX}]
{{a, a, a}, { b, b, b}, {c, c, c}}
Or:
listX={a, b, c, d};
numberX=3;
Transpose@Table[i, {numberX}, {i, listX}]
$endgroup$
add a comment |
$begingroup$
Alternatively:
listX = {a, b, c};
numberX = 3;
Table[ConstantArray[i, numberX], {i, listX}]
{{a, a, a}, { b, b, b}, {c, c, c}}
Or:
listX={a, b, c, d};
numberX=3;
Transpose@Table[i, {numberX}, {i, listX}]
$endgroup$
Alternatively:
listX = {a, b, c};
numberX = 3;
Table[ConstantArray[i, numberX], {i, listX}]
{{a, a, a}, { b, b, b}, {c, c, c}}
Or:
listX={a, b, c, d};
numberX=3;
Transpose@Table[i, {numberX}, {i, listX}]
edited 20 mins ago
answered 33 mins ago
MarcoBMarcoB
37k556113
37k556113
add a comment |
add a comment |
$begingroup$
Transpose[{listX}[[ConstantArray[1, numberX]]]]
$endgroup$
add a comment |
$begingroup$
Transpose[{listX}[[ConstantArray[1, numberX]]]]
$endgroup$
add a comment |
$begingroup$
Transpose[{listX}[[ConstantArray[1, numberX]]]]
$endgroup$
Transpose[{listX}[[ConstantArray[1, numberX]]]]
answered 31 mins ago
Henrik SchumacherHenrik Schumacher
55.7k576154
55.7k576154
add a comment |
add a comment |
lisa is a new contributor. Be nice, and check out our Code of Conduct.
lisa is a new contributor. Be nice, and check out our Code of Conduct.
lisa is a new contributor. Be nice, and check out our Code of Conduct.
lisa is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Mathematica Stack Exchange!
- 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.
Use MathJax to format equations. MathJax reference.
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%2fmathematica.stackexchange.com%2fquestions%2f192880%2fgenerating-a-list-with-duplicate-entries%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
$begingroup$
Wolfram Challenges.
$endgroup$
– J. M. is computer-less♦
29 mins ago