In matlab it very easy to plot a function:
x = [1:10]
y = x.*20
plot(x,y)
A little windows pops up with the graph and some editing options. Is there
anything like this for C++, or do I have to write a rasterizer from scratch?
x = [1:10]
y = x.*20
plot(x,y)
A little windows pops up with the graph and some editing options. Is there
anything like this for C++, or do I have to write a rasterizer from scratch?
Comment