scilab_kernel icon indicating copy to clipboard operation
scilab_kernel copied to clipboard

Plots are not shown

Open MZelenyElatec opened this issue 3 years ago • 0 comments

When I try this example:

// Define your x-values x = 0 : .1 : 10*%pi; // Define your function y = x .* cos(x); // Plot as used in Matlab plot(x, y) // Add title, labels and legend title('x * cos(x)') xlabel('x'); ylabel('y'); legend('y = x * cos(x)');

The plot in jupyter is not shown.

MZelenyElatec avatar Sep 08 '21 09:09 MZelenyElatec