Marek Kaluba

Results 59 issues of Marek Kaluba

and therefore are not visible e.g. when calling from julia (am I really correct here? :) ) anyway: ``` ~/.julia/artifacts/1f4e5762991b4f836993de3fc70599603880c0da/lib $ nm -DC --with-symbol-versions libarb.so | grep interval 0000000000079510 T...

I'd like to integrate a function over cubical region in CC^n (n-fold integral). At the moment I define integrand recursively, but of course i'd be much faster to compute multi-dimensional...

While working on my own code for YoungDiagrams I encountered this: ```julia λ = [5,3,2,2,1] μ = [2,2,1] m, n = length(λ), length(μ) l = maximum(λ) youngdiagram=zeros(Int, m, l) for...

bug

The function `character(l, m)` gives wrong results, e.g. the dimensions of representations (i.e. values at `[1,1,...,1]`): ```julia N = 4 for λ in partitions(N) println("λ = $(rpad(λ,10))\t χ_λ($(ones(Int,N))) = ",...

bug

```julia julia> VERSION v"1.4.0" julia> using CxxWrap julia> s = CxxWrap.StdLib.StdString("abc") "abc" julia> occursin("ab", "abc") true julia> occursin("ab", s) true julia> occursin(CxxWrap.StdLib.StdString("ab"), s) true julia> occursin(CxxWrap.StdLib.StdString("ab"), "abc") true ``` (as...

Is it possible to make constructors striclty typed? ```C++ mod.add_type("Rational", jlcxx::julia_type("Real", "Base")) .constructor() .constructor() (...) ); ``` However I'd like to channel julia constructor of `Mod.Rational(num::Base.Integer, den::Base.Integer)` through `Mod.Integer` (which...

enhancement

Suppose that I have a CxxWrapped type `myType`, it produces `myTypeAllocated` and `myTypeRef` concrete types on the julia side; I'd like to construct a CxxWrapped type parametrized by `myType` (in...

implements ShapiroWilkTest following > PATRICK ROYSTON > Approximating the Shapiro-Wilk W-test for non-normality > *Statistics and Computing* (1992) **2**, 117-119 > DOI: [10.1007/BF01891203](https://doi.org/10.1007/BF01891203) This is work in progress, all comments...

The [Heap's algorithm](https://en.wikipedia.org/wiki/Heap%27s_algorithm) which crawls over all permutations seem a good testcase, cause You can not be "smart" and use language specific optimisations, it's just pure operations on integer arrays...

I have the following usecase: ``` logger = basic_config("info") add_handler(logger, DefaultHandler("temp.log"), "file-log") info(logger, "some message") out = STDOUT err = STDERR redirect_stdout(logger.handlers["file-log"].io) redirect_stderr(logger.handlers["file-log"].io) # run some calls to c libs...