mmathlib/vector.cpp

46 lines
1.1 KiB
C++
Raw Normal View History

2022-07-16 10:47:29 +02:00
#include "vector.hpp"
#include <iostream>
using namespace std;
int main() {
2022-07-18 13:26:09 +02:00
vector v = vector(3);
cnumber one(1, 0);
cnumber two(2, 0);
cnumber three(3, 0);
cnumber four(4, 0);
cnumber five(5, 0);
cnumber i(0, 1);
v[0] = one;
v[1] = two;
v[2] = i;
2022-07-16 10:47:29 +02:00
2022-07-18 13:26:09 +02:00
vector w = vector(3);
w[0] = three;
w[1] = four;
w[2] = five;
cout << "v:" << endl;
cout << v << endl;
cout << "w:" << endl;
cout << w << endl;
cout << "v + w:" << endl;
cout << v + w << endl;
cout << "v - w:" << endl;
cout << v - w << endl;
cout << "v * w:" << endl;
cout << v * w << endl;
cout << "w * i:" << endl;
cout << w * i << endl;
for (long long j = 0; j < v.get_dimention(); j++) {
cout << "Element " << j << " of v:" << endl;
cout << v[j] << endl;
}
cout << "A temp vector of dimension 3" << endl << vector(3) << endl ;
vector k = vector(3);
k = w;
cout << "Assignment of w to k" << endl << k << endl ;
cout << "Manually set elements of k to elements of v" << endl;
for (long long j = 0; j < v.get_dimention(); j++)
k[j] = v[j];
cout << k << endl;
return 0;
2022-07-16 10:47:29 +02:00
}