Home Login  |   Contact  |   About Us       Friday, April 26, 2024   

Pj0182295- Back to Home
   Skip Navigation LinksHOME ›  AREAS OF EXPERTISE  #1 ›   Vectors / Matrices ›  ~ Math on Vectors



Skip Navigation Links.



"Math Operators on Vectors"
Vector Operator Method
Results =


vector v1 = ( , , , , )
vector v2 = ( , , , , )



[ Initial vector-v1: ( 1.0, 2.0, 3.0, 4.0, 5.0 ) ]
[ Initial vector-v2: ( 6.0, 7.0, 8.0, 9.0, 10.0 ) ]

IMPLEMENTATION
Operations on Vectors

Standard vector addition, subtraction, multiplication and division are performed basically by one method with variations to accomodate the various operations. We have shown the same implementation under Smalltalk (please see menu)  "Vectors and Matrices in Smalltalk".

Algorithm Creation

As an example we show the model function for the dot product of two vectors:

A.B = ∑ni=1 Ai Bi

where the dot product of two vectors produces a scalar quantity.


Testing the Vector Operator Method

In order to test the Vector Operator Method, a new TestMathOperators() static method has been added and executed. Supporting code and methods are not shown.

           static void TestMathOperators();
              {
                 ListBox1.Items.Clear();
                 VectorR v1 = new VectorR(new double[] { t1, t2, t3, t4, t5 });
                 VectorR v2 = new VectorR(new double[] { t7, t8, t9, t10, t11 };
                 double d = 20;
                 ListBox1.Items.Add(" v1 = " + v1);
                 ListBox1.Items.Add(" v2 = " + v2);
                 ListBox1.Items.Add(" d = " + d);
                 ListBox1.Items.Add(" v2 + v1 = " + (v2 + v1));
                 ListBox1.Items.Add(" v2 - v1 = " + (v2 - v1));
                 ListBox1.Items.Add(" v1 * d = " + (v1 * d));
                 ListBox1.Items.Add(" v1 / d = " + (v1 / d));
              }

As a sample we provide the input data points using two double arrays vector v1 and vector v2. Results are seen on the screen above.

The user can manipulate all values and try variations on the vectors themselves by specifying new vector values.



Other Implementations...


Object-Oriented Implementation
Graphics and Animation
Sample Applications
Ore Extraction Optimization
Vectors and Matrices
Complex Numbers and Functions
Ordinary Differential Equations - Euler Method
Ordinary Differential Equations 2nd-Order Runge-Kutta
Ordinary Differential Equations 4th-Order Runge-Kutta
Higher Order Differential Equations
Nonlinear Systems
Numerical Integration
Numerical Differentiation
Function Evaluation


   Quotes

Consulting Services - Back to Home


Home

Home Math, Analysis,
  expertise..."

EIGENVALUE
SOLUTIONS...


> Rayleigh-Quotient Method

> Cubic Spline Method

 

Applied Mathematical Algorithms

Home

ComplexFunctions

Home

NonLinear
Home

Differentiation
Home

Integration
About Us


KMP Software Engineering is an independent multidisciplinary engineering consulting company specializing in mathematical algorithms.

      (About Us) →
Areas of
Expertise


SpecialFunctions
VectorsMatrices
OptimizationMethods
ComplexNumbers
Interpolation
CurveFitting
NonLinearSystems
LinearEquations
DistributionFunctions
NumericalDifferentiation
NumericalIntegration
DifferentialEquations
Smalltalk
FiniteBoundary
Eigenvalue
Graphics
Understanding
Mining


MiningMastery
MineralNews
MineralCommodities
MineralForum
Crystallography
Services


NumericalModeling
WebServices
MainframeServices
OutsourceServices

LINKED IN
MINE REVIEW(by G.Pacheco)
Brand





Home

Login

Contact
Since 2006 All Rights Reserved  © KMP Software Engineering LINKS | PRIVACY POLICY | LEGAL NOTICE