medium_cython ============= Fused add (Cython) ------------------ Fused types example. .. literalinclude:: ../../../../../scikitplot/cython/_templates/medium_cython/t01_fused_add.pyx :language: cython Medium: fused types dot ----------------------- Fused types and shape checks. .. literalinclude:: ../../../../../scikitplot/cython/_templates/medium_cython/t01_fused_types.pyx :language: cython Running mean (cdef class) ------------------------- Stateful Cython cdef class for incremental mean. .. literalinclude:: ../../../../../scikitplot/cython/_templates/medium_cython/t01_running_mean.pyx :language: cython Fused-type add -------------- .. literalinclude:: ../../../../../scikitplot/cython/_templates/medium_cython/t02_fused_add.pyx :language: cython Fused-type add -------------- .. literalinclude:: ../../../../../scikitplot/cython/_templates/medium_cython/t03_fused_add.pyx :language: cython Min/max on memoryview --------------------- .. literalinclude:: ../../../../../scikitplot/cython/_templates/medium_cython/t04_minmax_memview.pyx :language: cython Argmax on memoryview -------------------- .. literalinclude:: ../../../../../scikitplot/cython/_templates/medium_cython/t05_argmax_memview.pyx :language: cython