Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/interface/orthnull.jl
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ of `kind`.
the input matrix `A`. Always use the return value of the function as it may not always be
possible to use the provided `CV` as output.

See also [`right_orth(!)`](@ref right_orth), [`left_orth(!)`](@ref left_orth), [`right_orth(!)`](@ref right_orth)
See also [`right_orth(!)`](@ref right_orth), [`left_null(!)`](@ref left_null), [`right_null(!)`](@ref right_null)
"""
function left_orth end
function left_orth! end
Expand Down Expand Up @@ -117,7 +117,7 @@ of `kind`.
the input matrix `A`. Always use the return value of the function as it may not always be
possible to use the provided `CVᴴ` as output.

See also [`left_orth(!)`](@ref left_orth), [`left_orth(!)`](@ref left_orth), [`right_orth(!)`](@ref right_orth)
See also [`left_orth(!)`](@ref left_orth), [`left_null(!)`](@ref left_null), [`right_null(!)`](@ref right_null)
"""
function right_orth end
function right_orth! end
Expand Down Expand Up @@ -224,4 +224,4 @@ function right_null!(A::AbstractMatrix; kwargs...)
end
function right_null(A::AbstractMatrix; kwargs...)
return right_null!(copy_input(right_null, A); kwargs...)
end
end