0

I have two tables like:

nex1 = Table[l3*10^3/4*10^14, {l3, 1, 30, 1}];
nex2= Table[l4, {l4, 1, 30, 1}];

How can I plot nex1 versus nex2 so that nex1 is x axis and nex2 is y axis (not distinct plot of this tables in one plot).

Yves Klett
  • 15,383
  • 5
  • 57
  • 124
Ehsan F
  • 37
  • 6

1 Answers1

0

You can merge the two tables in one single list of couples of points, by using a new Table function. Then you can plot the created list using ListPlot

nex1 = Table[l3*10^3/4*10^14, {l3, 1, 30, 1}];
nex2 = Table[l4, {l4, 1, 30, 1}];
Table[{nex1[[i]], nex2[[i]]}, {i, 1, 30}];
ListPlot[%]
Valacar
  • 970
  • 5
  • 14