eigmax

eigmax(A)

Returns the largest eigenvalue of A.

Examples

julia> A = [1 2 3; 4 5 6; 7 8 9];
julia> eigmax(A)
9.0

In this example, eigmax is used to calculate the largest eigenvalue of the matrix A. The eigmax function returns a single float value representing the largest eigenvalue.

Common mistake example:

julia> A = [1 2; 3 4];
julia> eigmax(A)
MethodError: no method matching eigmax(::Array{Int64,2})

In this example, eigmax is called on a 2x2 matrix, but it results in a MethodError because the eigmax function expects a square matrix. Make sure to provide a square matrix as input to eigmax.

See Also

cummax, eigmax, findmax, hist, hist!, hist2d, hist2d!, histrange, indmax, maxabs, maxabs!, maximum!, mean, mean!, median, median!, minabs, minabs!, minimum!, minmax, quantile!, realmax, std, stdm,

User Contributed Notes

Add a Note

The format of note supported is markdown, use triple backtick to start and end a code block.

*Required Field
Details

Checking you are not a robot: