Error, (in plots:-pointplot) incorrect specification of points data
Error, (in plots:-pointplot3d) incorrect specification of points data
Error, (in plots/pointplot) incorrect first argument
|
Description
|
|
These errors occur when the first argument to plots[pointplot] or plots[pointplot] is not a set of points of numeric values specified in the proper format. For the correct syntax, see the plots[pointplot] and plots[pointplot3d] help pages.
|
|
Examples
|
|
Example 1
>
|
|
The variable is undefined:
>
|
|
Solution:
Defining the variable fixes this error.
>
|
|
| (2.1) |
>
|
|
Example 2
Lowercase is used instead of uppercase
>
|
|
>
|
pointplot([[1, 2], [2, 4], [pi, 8]]);
|
Solution:
Using uppercase corrects the error.
>
|
pointplot([[1, 2], [2, 4], [Pi, 8]]);
|
>
|
|
|
|
Download Help Document
Was this information helpful?