$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-users] Why does not ublas overload operators?
From: Allen Chen (allen.chenal_at_[hidden])
Date: 2008-12-25 21:36:50
Six years ago, I design my own matrix library like matlab. I overload
operators, it make it conveninent to do matrix manupulations. For
example
matrix A, B, C, D;
A = B*C +D;
It is easy to use and read.
Why does not ublas overload such operators as +, -, *, /, ^, [], (),...
Allen