Questions tagged [join]
The join tag has no summary.
13 questions
1 vote
0 answers
67 views
Number with leading digit underlined [duplicate]
I'd like to print a multi-digit number with the leading digit underlined. I see that I can get the leading digit, convert it to a string and use Style to underline ...
3 votes
1 answer
336 views
Why does Join not throw an error message when attempting to concatenate a List with an Integer, using infix notation? [closed]
Suppose I have my10List, a list of the ten integers from 1 to 10. Suppose I wish to rearrange the list so that the element 8 ...
2 votes
1 answer
85 views
How to quickly join in the following way? [duplicate]
Consider the following table: tab = RandomReal[{0, 1}, {10, 3}]; subsets=Subsets[tab, {2}]; How to quickly reduce subsets to a ...
6 votes
3 answers
299 views
How to quickly join in the following way?
Consider the following table: tab = RandomReal[{0, 1}, {10, 3}]; subsets=Subsets[tab, {2}]; How to quickly reduce subsets to a ...
0 votes
0 answers
85 views
How to avoid VideoJoin function changing the playback speed?
VideoJoin changed the video speed of all elements in the resultant video. All elements of the argument list to VideoJoin were of the same file format. I tried changing the number of video files $n$ ...
0 votes
0 answers
37 views
How to join two tables in the following way? [duplicate]
Consider two tables tab1={{1,2},{3,4},{5,6}}; tab2={{7,8},{9,10},{11,12}}; How to join these tables in a way such that the ith column of ...
6 votes
2 answers
257 views
How to join in the following way?
Consider the following list of tables: listtemp[n_] := Table[RandomReal[{0, 1}, {2, 2}], n]; How to join its elements at the level 2 in a compact way for arbitrary ...
1 vote
2 answers
423 views
How to concatenate an array of matrices?
When trying to concatenate matrices i usually use Join. But having the matrices in an array it gets tricky. As an example: ...
5 votes
3 answers
413 views
Join not working
I am trying to append elements to a list in Mathematica using the join function but it is not working. Here is a small working example: ...
1 vote
0 answers
89 views
Shifting and joining two tables [closed]
I have the two following tables that I would like to join across the second dimension. Both tables run from -1.2 to +1.2 across the second dimension. Hence, the resultant table should run from -1.2 to ...
5 votes
2 answers
207 views
How can I join two graphs with a specific number of new edges, connected randomly between the graphs?
I would like to create one large graph with two communities that have high internal connectivity and very weak (though tunable) connectivity between them. I am attempting to create two fully connected ...
1 vote
1 answer
194 views
How to join the same table multiple times
Consider some test table tab=Table[{i,i^2},{i,1,100,1}]; I would like to obtain the table tab2=Join[tab,tab,...,tab] where ... ...
1 vote
2 answers
216 views
Join two matrices as in left_join in R
I have two data sets. I would like to join them left_join function of R this ...