We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
help?> cos search: cos cosh cosd cosc cospi acos acosh acosd sincos sincosd const close isconst copysign MathConstants coalesce
cos(x)
Compute cosine of x, where x is in radians.
────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cos(A::AbstractMatrix)
Compute the matrix cosine of a square matrix A.
If A is symmetric or Hermitian, its eigendecomposition (eigen) is used to compute the cosine. Otherwise, the cosine is determined by calling exp.
Examples ≡≡≡≡≡≡≡≡≡≡
julia> cos(fill(1.0, (2,2))) 2×2 Array{Float64,2}: 0.291927 -0.708073 -0.708073 0.291927
The text was updated successfully, but these errors were encountered:
No branches or pull requests
help?> cos
search: cos cosh cosd cosc cospi acos acosh acosd sincos sincosd const close isconst copysign MathConstants coalesce
cos(x)
Compute cosine of x, where x is in radians.
────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cos(A::AbstractMatrix)
Compute the matrix cosine of a square matrix A.
If A is symmetric or Hermitian, its eigendecomposition (eigen) is used to compute the cosine. Otherwise, the cosine
is determined by calling exp.
Examples
≡≡≡≡≡≡≡≡≡≡
julia> cos(fill(1.0, (2,2)))
2×2 Array{Float64,2}:
0.291927 -0.708073
-0.708073 0.291927
The text was updated successfully, but these errors were encountered: