Wolfram – Coordinates and Graphics

Draw a circle and an inner circle Graphics[{Circle[{0, 0}, 1], Circle[{0, -0.5}, 0.5]}] Draw 10 circles which has center (i,i) and i is in {1,10} Graphics[Table[Circle[{i, i}, 0.5], {i, 10}]] Connect 10 points which is at (i,i) data = Table[{i, i}, {i, 10}] ListLinePlot[data] Or: Graphics[Line[data]] ListLinePlot[{{1, 1}, {2, 3}, {3, Read more…

Wolfram – Handle Images

Capture an image from the camera. CurrentImage[] We can use function blur to change our image, the interface Manipulate will help us to display different levels dynamically. To find important colors in the image. Convert the original image to a white and black image: To find sharp changes in the Read more…

Wolfram – Basic Graphics Objects

We always use function Graphics and Graphics3D to represent items in the Wolfram Language. Use RegularPolygon to draw a triangle. Graphics[RegularPolygon[3]] Make a red octagon. Graphics[Style[RegularPolygon[8], Red]] Make a list whose elements are disks with hues varying from 0 to 1 in steps of 0.1. Table[Graphics[Style[Disk[ ], Hue[n]]], {n, 0, Read more…

Tex To PDF
: convert the Latex file which suffix is tex to a PDF file

X