-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtut63.cpp
More file actions
38 lines (36 loc) · 708 Bytes
/
tut63.cpp
File metadata and controls
38 lines (36 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include <iostream>
using namespace std;
template <class T>
class vector
{
public:
T *arr;
int size;
vector(int m)
{
size = m;
arr = new T[size];
}
T dotProduct(vector &v){
T d=0;
for (int i = 0; i < size; i++)
{
d+=this->arr[i]*v.arr[i];
}
return d;
}
};
int main()
{
vector<float> v1(3); //vector 1 with a float data type
v1.arr[0] = 1.4;
v1.arr[1] = 3.3;
v1.arr[2] = 0.1;
vector<float> v2(3); //vector 2 with a float data type
v2.arr[0]=0.1;
v2.arr[1]=1.90;
v2.arr[2]=4.1;
float a = v1.dotProduct(v2);
cout<<a<<endl;
return 0;
}