Maths is smART |
Maths is smart, maths is art.
|
Magic Eye
I got alot of good response from the picture I created on Gnuplot I decided to try and make another one. Again this was a simple code produced with C and copied into Gnuplot terminal, it kind of looks like one of those magic eye pictures don’t you think? Perhaps if you stare at it long enough it will spell something out to you… If so let me know :)
I have only recently started using Gnuplot (literally only for a few weeks) but combined with C it is a powerful way of creating nice images. I used this simple code in C:
#include <stdio.h>
int main()
{
int i;
printf(“plot [0:10][1:9] \”);
for(i = 0; i < 200 ; i++)
printf(“sin(x)+(%f) with filledcurve x2, \\n”, (double) i/20);
printf(“sin(x)+10 with filledcurve x2”);
return(0);
}
Then I copied the output into Gnuplot and got the following result:

Obviously very simple but I will try to master Gnuplot and post some really cool pictures!