Here is a simple oml command
- At first, plot graph
- And then, change the line width.
clf;
x = linspace(0,10,150);
y = cos(5*x);
plot(x,y,'b--o','linewidth', 0.1);
title('2-D Line Plot');
xlabel('x');
ylabel('cos(5x)')
set(gca, 'linewidth', 4)
In the help, there is a linewidth property, but it makes an error.
How can I make it correct?
