數學函數繪圖計算器(二個)
繪制编制:
直線: (如:3x ? 2)
多項式: (如:x^3 + 3x^2 ? 5x + 2)
三角函數: sin(x), cos(x/2), tan(2x), csc(3x), sec(x/4), cot(x)
反三角函數: arcsin(x), arccos(x), arctan(x), arccsc(x), arcsec(x), arccot(x)
指數(e^x)和logarithm: (自然對數:ln(x) 以10爲底對數:log(x)
絕對值::如abs(x)
雙曲函數和反雙曲函數: sinh(x), cosh(x), tanh(x), arcsinh(x), arccosh(x), arctanh(x)
Sign (1 if the sign is positive, ?1 if the sign of the function is negative. For example, try sign(sin(x)))
你還可以繪制以下數學函數:
ceiling: ceil(x) and round: round(x)
平方根sqrt(x)
你可以同化利用以上函数如: "ln(abs(x))".
你必须利用法则进行绘制,例如I"2 tan x"可以绘制,但 "tan 2x"不成以绘制。 你必须写成如许: "tan(2x)".
推薦