Question: plotting multiple 3d data sets on a single plot

How do i plot a bunch of 3D data sets. If it were just one set i could use pointplot3d i suppose. with(plots): > l1 := [[1,2,2],[3,4,2],[1,5,6],[7,8,9]]; > l2 := [[1,2,2.5],[3,4,2],[1,5,6],[7,8,9]]; > plots[pointplot3d]([l1,l2], axes=boxed, labels=[x, y, z], > connect=true); #DOESNT WORK More exactly i want to plot the data sets (11 rows each) pasted below. 1.000000000000 1.000000000000 .571428571400 2.000000000000 1.000000000000 .139941691000 3.000000000000 1.000000000000 .068542869040 4.000000000000 1.000000000000 .041965021860 5.000000000000 1.000000000000 .028776014990 6.000000000000 1.000000000000 .021141562030 7.000000000000 1.000000000000 .016272222670 8.000000000000 1.000000000000 .012951360900 9.000000000000 1.000000000000 .010572539510 10.000000000000 1.000000000000 .008803257391 11.000000000000 1.000000000000 .007447653748 1.000000000000 2.000000000000 .477064220200 2.000000000000 2.000000000000 .128522218400 3.000000000000 2.000000000000 .068174880340 4.000000000000 2.000000000000 .044656525440 5.000000000000 2.000000000000 .032452791570 6.000000000000 2.000000000000 .025081708580 7.000000000000 2.000000000000 .020188428560 8.000000000000 2.000000000000 .016724153700 9.000000000000 2.000000000000 .014154754550 10.000000000000 2.000000000000 .012180917700 11.000000000000 2.000000000000 .010622423560 1.000000000000 3.000000000000 .440191387600 2.000000000000 3.000000000000 .115855174000 3.000000000000 3.000000000000 .061107332490 4.000000000000 3.000000000000 .040236826390 5.000000000000 3.000000000000 .029593887030 6.000000000000 3.000000000000 .023244667400 7.000000000000 3.000000000000 .019061473850 8.000000000000 3.000000000000 .016109290670 9.000000000000 3.000000000000 .013918267570 10.000000000000 3.000000000000 .012228528950 11.000000000000 3.000000000000 .010885538360 thank you
Please Wait...