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













3












$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}}











share|improve this question









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
















3












$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}}











share|improve this question









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














3












3








3





$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}}











share|improve this question









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






share|improve this question









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.











share|improve this question









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.









share|improve this question




share|improve this question








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














  • 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










4 Answers
4






active

oldest

votes


















2












$begingroup$

one way might be



listX    = {a, b, c, d}
numberX = 3
Transpose[{listX}].{Table[1, {numberX}]}


Mathematica graphics






share|improve this answer









$endgroup$





















    1












    $begingroup$

    Transpose@ConstantArray[listX, numberX]



    {{a, a, a}, {b, b, b}, {c, c, c}, {d, d, d}}







    share|improve this answer









    $endgroup$





















      1












      $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}]





      share|improve this answer











      $endgroup$





















        0












        $begingroup$

        Transpose[{listX}[[ConstantArray[1, numberX]]]]





        share|improve this answer









        $endgroup$













          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.










          draft saved

          draft discarded


















          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









          2












          $begingroup$

          one way might be



          listX    = {a, b, c, d}
          numberX = 3
          Transpose[{listX}].{Table[1, {numberX}]}


          Mathematica graphics






          share|improve this answer









          $endgroup$


















            2












            $begingroup$

            one way might be



            listX    = {a, b, c, d}
            numberX = 3
            Transpose[{listX}].{Table[1, {numberX}]}


            Mathematica graphics






            share|improve this answer









            $endgroup$
















              2












              2








              2





              $begingroup$

              one way might be



              listX    = {a, b, c, d}
              numberX = 3
              Transpose[{listX}].{Table[1, {numberX}]}


              Mathematica graphics






              share|improve this answer









              $endgroup$



              one way might be



              listX    = {a, b, c, d}
              numberX = 3
              Transpose[{listX}].{Table[1, {numberX}]}


              Mathematica graphics







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered 1 hour ago









              NasserNasser

              58.1k489206




              58.1k489206























                  1












                  $begingroup$

                  Transpose@ConstantArray[listX, numberX]



                  {{a, a, a}, {b, b, b}, {c, c, c}, {d, d, d}}







                  share|improve this answer









                  $endgroup$


















                    1












                    $begingroup$

                    Transpose@ConstantArray[listX, numberX]



                    {{a, a, a}, {b, b, b}, {c, c, c}, {d, d, d}}







                    share|improve this answer









                    $endgroup$
















                      1












                      1








                      1





                      $begingroup$

                      Transpose@ConstantArray[listX, numberX]



                      {{a, a, a}, {b, b, b}, {c, c, c}, {d, d, d}}







                      share|improve this answer









                      $endgroup$



                      Transpose@ConstantArray[listX, numberX]



                      {{a, a, a}, {b, b, b}, {c, c, c}, {d, d, d}}








                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered 20 mins ago









                      RomanRoman

                      2,674717




                      2,674717























                          1












                          $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}]





                          share|improve this answer











                          $endgroup$


















                            1












                            $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}]





                            share|improve this answer











                            $endgroup$
















                              1












                              1








                              1





                              $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}]





                              share|improve this answer











                              $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}]






                              share|improve this answer














                              share|improve this answer



                              share|improve this answer








                              edited 20 mins ago

























                              answered 33 mins ago









                              MarcoBMarcoB

                              37k556113




                              37k556113























                                  0












                                  $begingroup$

                                  Transpose[{listX}[[ConstantArray[1, numberX]]]]





                                  share|improve this answer









                                  $endgroup$


















                                    0












                                    $begingroup$

                                    Transpose[{listX}[[ConstantArray[1, numberX]]]]





                                    share|improve this answer









                                    $endgroup$
















                                      0












                                      0








                                      0





                                      $begingroup$

                                      Transpose[{listX}[[ConstantArray[1, numberX]]]]





                                      share|improve this answer









                                      $endgroup$



                                      Transpose[{listX}[[ConstantArray[1, numberX]]]]






                                      share|improve this answer












                                      share|improve this answer



                                      share|improve this answer










                                      answered 31 mins ago









                                      Henrik SchumacherHenrik Schumacher

                                      55.7k576154




                                      55.7k576154






















                                          lisa is a new contributor. Be nice, and check out our Code of Conduct.










                                          draft saved

                                          draft discarded


















                                          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.




                                          draft saved


                                          draft discarded














                                          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





















































                                          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







                                          Popular posts from this blog

                                          Installing LyX: “No textclass is found.”LyX installation error- text class not found- 'Reconfigure' or...

                                          (1602) Indiana Índice Designación y nombre Características orbitales Véase...

                                          Universidad Autónoma de Occidente Índice Historia Campus Facultades Programas Académicos Medios de...