Group Abstract Group Abstract

Message Boards Message Boards

0
|
3K Views
|
1 Reply
|
2 Total Likes
View groups...
Share
Share this post:

ListLinePlot3D not working

Posted 4 years ago

Hello!

Can someone help me with ListLinePlot3D function, which is returning me only the input text with no graphics. I tried also an example from Help: https://reference.wolfram.com/language/ref/ListLinePlot3D.html, but is not working either. ListPointPlot3D, however, is returning the output as expected.

ListLinePlot3D[{{0, 0, 0}, {1, 0, 1}, {1, 1, 2}, {2, 2, 2}, {2, 4, 
   3}, {3, 6, 4}}]

If I want to get Help on this function, it seems like it is not present anymore. I use Mathematica 12.2.

Thank you for your answers.

POSTED BY: Luka Roblek
Posted 4 years ago

Look at the "History" section at the bottom of https://reference.wolfram.com/language/ref/ListLinePlot3D.html and notice it says that function was newly introduced in version 12.3.

The "History" section at the bottom of https://reference.wolfram.com/language/ref/ListPointPlot3D.html says that function was introduced in version 6.

You might be able to simulate some of the functionality of ListLinePlot3D with

Show[Graphics3D[Line[{{0,0,0},{1,0,1},{1,1,2},{2,2,2},{2,4,3},{3,6,4}}]]]
POSTED BY: Bill Nelson
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard