Klaus Crusius

Results 20 issues of Klaus Crusius

The singular value decompositon fails for empty matrices with element types not ` svdvals!(Float16.(ones(10,0))) ERROR: DimensionMismatch("length of diagonal vector is 0, length of off-diagonal vector is 0") Stacktrace: [1] Bidiagonal...

Add test cases for the `ArbComplex`type. A few bug and simplifications were made to the source code, as revealed by test failures, and to simplify test coverage. Some test cases...

I would appreciate the option to remove whitespace after commas in index expressions. So I want to have ``` A[1,2] ``` instead of ``` A[1, 2] ```

When I format the following text, the blanks in the expression are removed. I expected that only to happen in index expressions inside the `[...]. ``` julia> using JuliaFormatter julia>...

This PR uses the features of julia https://github.com/JuliaLang/julia/pull/48861 This PR may not be merged before the above PR is enabled.

That looks like an editing error.

bignums
embarrassing-bugfix

Hi, I am just reviewing this package and have some remarks about the API of `inpolygon`. The untyped input argument `p` obiously expects a vector-like object, which contains the x...

It should be possible to define interfaces, which require more than one interface type. Example with proposal for syntax: ``` @trait ProblemDescription prefix Is,IsNot @trait Solve @implement Tuple{IsProblemDescription,CanSolve} by solve(_2,...

feature
syntax

Fixes #53857 For `x::Union{Float32,Float64}` and `y::Integer` with `y % Int32 != y` a stack trace appears when calling `@fastmath x^y`. This fix calls `x^y` in those cases, while leaving the...

found on v1.11 ``` julia> function foo(x::T) where {T}v x end foo (generic function with 1 method) julia> foo(42) ERROR: UndefVarError: `v` not defined Stacktrace: [1] foo(x::Int64) @ Main ./REPL[3]:1...

kind:bug
parser