wolfram mathematica - How to combine two lists to plot coordinate pairs? -


i have read x-data (from text files) list1, , y-data list2:

list1 = { 0.0,    0.172,  0.266, ..} list2 = {-5.605, -5.970, -6.505, ..}  

how combine 2 lists in order plot points {0.0, -5.605}, {0.172, -5.970}, {0.266, -6.505},....

if don't pinguin dirk's suggestion try

transpose[{list1,list2}] 

Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -