From a89658e3492b5e80428da2abec360112ff03b6a8 Mon Sep 17 00:00:00 2001 From: "femtocleaner[bot]" Date: Mon, 6 Nov 2017 13:42:45 -0800 Subject: [PATCH] Fix deprecations (#21) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5d736a2..6d3d50d 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ This function factorizes the input matrix ``X`` into the product of two non-nega In general, it returns a result instance of type ``NMF.Result``, which is defined as ```julia -immutable Result +struct Result W::Matrix{Float64} # W matrix H::Matrix{Float64} # H matrix niters::Int # number of elapsed iterations