Describe the bug
If one uses this command line with a three-column table, then a strange message occurs:
plot3d matrix(:,{3,1,2}) -set coords=cartesian
To Reproduce
Steps to reproduce the behavior:
Create a three-column table
Execute the command line with this table
See error
Expected behavior
The plot is correclty reproduced
Screenshots
Desktop (please complete the following information):
OS: 10x64
Version v1.1.5.2303
Additional context
Add any other context about the problem here.
(Do not write below this line)
DEVS' SECTION
ANALYSIS
The problem is in lines 4189ff in plotting.cpp, where "plot3d" is excluded explicitly. This should be converted into something like the following, where the third parameter enables the additonal square brackets.
if (sArg_2 == "<<empty>>" && sArg_3 == "<<empty>>")
{
// Only one index or an index vector
sTemp = "\"" + constructDataLegendElement(sArg_1, sTableName, _pInfo.sCommand != "plot3d") + "\"";
}
DESCRIPTION
Describe the bug If one uses this command line with a three-column table, then a strange message occurs:
plot3d matrix(:,{3,1,2}) -set coords=cartesian
To Reproduce Steps to reproduce the behavior:
Expected behavior The plot is correclty reproduced
Screenshots
Desktop (please complete the following information):
Additional context Add any other context about the problem here.
(Do not write below this line)
DEVS' SECTION
ANALYSIS
The problem is in lines 4189ff in
plotting.cpp
, where"plot3d"
is excluded explicitly. This should be converted into something like the following, where the third parameter enables the additonal square brackets.IMPLEMENTATION STEPS
(see also our Wiki for implementation guidelines)
DOCUMENTATION STEPS
(see also our Wiki for further information)
*.NHLP
and*.NDB
files, if needed)*.NLNG
files, if needed)PULL REQUEST