From 2e0870a4c360dc7700d8d80f24004b0ebacebd8c Mon Sep 17 00:00:00 2001 From: Relintai Date: Mon, 24 Apr 2023 08:57:59 +0200 Subject: [PATCH] Notes. --- mlpp/lin_alg/mlpp_vector.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mlpp/lin_alg/mlpp_vector.h b/mlpp/lin_alg/mlpp_vector.h index e5c9ef6..4c7b3ae 100644 --- a/mlpp/lin_alg/mlpp_vector.h +++ b/mlpp/lin_alg/mlpp_vector.h @@ -327,6 +327,11 @@ public: return true; } + // New apis should look like this: + //Ref substract(const Ref &b); + //void substracted(const Ref &b); + //void subtraction(const Ref &a, const Ref &b); -> result is in this (subtractionv like) + Ref flattenmnv(const Vector> &A); Ref hadamard_productnv(const Ref &a, const Ref &b);