Hyperbolic parabolic shape of mathematical graphics

Source: Internet
Author: User

The hyperbolic parabolic dish is also called the Saddle Surface. Its Equation in the Cartesian coordinate system is:

X, Y, and Z are the variables in the direction of the three coordinate axes of the Cartesian coordinate system, and A and B are constants.

This article will show several algorithms and cut diagrams for generating a hyperbolic parabolic table. use the script code of the custom syntax to generate a mathematical image. for related software, see: Mathematical graphics visualization tool. This software is free and open-source. QQ chat group: 367752815

(1)

vertices = dimension1:64 dimension2:64x = from (-4) to (4) dimension1z = from (-4) to (4) dimension2y = x*x - z*z

 

(2) parameter equation representation

#y = x*x/a/a - z*z/b/bvertices = dimension1:64 dimension2:64u = from (-3) to (3) dimension1v = from (-3) to (3) dimension2a = rand2(0.5, 2)b = rand2(0.5, 2)x = a*(u + v)z = b*(u - v)y = 2*u*v

(3) trigonometric function representation

vertices = D1:64 D2:64u = from (0) to (2*PI) D1v = from (0) to (3) D2a = rand2(0.5, 1)x = v*sin(u)z = v*cos(u)y = a*v*v*sin(u*2)

 

(4) Multiplication

If the hyperbolic parabolic

Follow +ZThe equation is:

If so, it is simplified:

.

Finally, let's see the hyperbolic parabolic

.

It is equal to the following surface:

Therefore, it can be regarded as the geometric representation of the multiplication table.

vertices = dimension1:64 dimension2:64x = from (-4) to (4) dimension1z = from (-4) to (4) dimension2y = x*z

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.