Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
matjul
/
iax0583
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
1056f1f2
authored
Oct 08, 2018
by
matjul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upload New File
parent
0fedfb4d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
57 additions
and
0 deletions
lab6task1.c
lab6task1.c
0 → 100644
View file @
1056f1f2
#include <math.h>
#include <stdio.h>
float
vectorMagnitude
(
int
vector
[
3
]);
int
dotProduct
(
int
vector1
[
3
],
int
vector2
[
3
]);
float
cosCompare
(
int
vector1
[
3
],
int
vector2
[
3
]);
int
main
(){
int
i
,
j
;
int
matrix
[
4
][
3
]
=
{
{
1
,
4
,
6
},
{
2
,
-
3
,
1
},
{
3
,
5
,
0
},
{
3
,
1
,
-
3
}
};
for
(
i
=
0
;
i
<
4
;
i
++
){
for
(
j
=
0
;
j
<
i
;
j
++
){
printf
(
"%f
\n
"
,
acos
(
cosCompare
(
matrix
[
i
],
matrix
[
j
])));
}
}
return
0
;
}
float
vectorMagnitude
(
int
vector
[
3
]){
int
sumOfSquares
=
0
;
for
(
int
i
=
0
;
i
<
3
;
i
++
){
sumOfSquares
+=
vector
[
i
]
*
vector
[
i
];
}
float
magnitude
=
sqrt
(
sumOfSquares
);
return
magnitude
;
}
int
dotProduct
(
int
vector1
[
3
],
int
vector2
[
3
]){
int
dot
=
0
;
for
(
int
i
=
0
;
i
<
3
;
i
++
){
dot
+=
vector1
[
i
]
*
vector2
[
i
];
}
return
dot
;
}
float
cosCompare
(
int
vector1
[
3
],
int
vector2
[
3
]){
int
dot
=
dotProduct
(
vector1
,
vector2
);
float
mag1
=
vectorMagnitude
(
vector1
);
float
mag2
=
vectorMagnitude
(
vector2
);
float
cosine
=
dot
/
(
mag1
*
mag2
);
return
cosine
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment