My numerical code generates some data (vectors and matrices).
using CSV, Tables
.
.
... code
.
.
CSV.write("test.csv", Tables.table(x), writeheader=false)
This generates a CSV file with one table.
I can write for example a vector order matrix (separated by comma).
If I have two (or more) vectors, how can I write them in two separate tables?