#include "sll_errors.h"
Go to the source code of this file.
|
subroutine | s_vector_space__add (self, x, y) |
| z = x + y More...
|
|
subroutine | s_vector_space__mult (self, a, x) |
| z = a * x More...
|
|
subroutine | s_vector_space__mult_add (self, a, x, y) |
| z = a * x + y More...
|
|
subroutine | s_vector_space__incr_mult (self, a, x) |
| z += a * x More...
|
|
subroutine | s_vector_space__lcmb (self, a, x) |
| z = \( \sum_i ( a_i x_i ) \) More...
|
|
subroutine | s_vector_space__incr_lcmb (self, a, x) |
| z += \( \sum_i ( a_i x_i ) \) More...
|
|
real(wp) function | f_vector_space__norm (self) |
| Norm of vector: ||z||. More...
|
|
real(wp) function | f_vector_space__inner (self, x) |
| Inner product: <z,x> More...
|
|
subroutine | s_vector_space__show (self) |
| Show something, for debug. More...
|
|
subroutine | s_vector_space__source_scalar (self, x) |
| Copy constructor: create one copy of vector z More...
|
|
subroutine | s_vector_space__source_array (self, x, n) |
| Copy constructor: create n copies of vector z More...
|
|
|
integer, parameter | wp = f64 |
| Working precision. More...
|
|