Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
IDATT2003 Mappevurdering
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Håvard Johannes Versto Daleng
IDATT2003 Mappevurdering
Merge requests
!1
Merge master and main
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Merge master and main
master
into
main
Overview
0
Commits
8
Pipelines
0
Changes
1
Merged
Håvard Johannes Versto Daleng
requested to merge
master
into
main
1 year ago
Overview
0
Commits
8
Pipelines
0
Changes
1
Expand
These classes perform the transformations needed to produce fractals.
0
0
Merge request reports
Viewing commit
889c1173
Prev
Next
Show latest version
1 file
+
52
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
889c1173
Created Matrix2x2-class.
· 889c1173
Håvard Daleng
authored
1 year ago
src/main/java/edu/ntnu/stud/model/Matrix2x2.java
0 → 100644
+
52
−
0
Options
package
edu.ntnu.stud.model
;
/**
* Class representing a 2x2 matrix.
*/
public
class
Matrix2x2
{
/**
* The a00 component of the matrix.
*/
private
double
a00
;
/**
* The a01 component of the matrix.
*/
private
double
a01
;
/**
* The a10 component of the matrix.
*/
private
double
a10
;
/**
* The a11 component of the matrix.
*/
private
double
a11
;
/**
* Create a new 2x2 matrix.
*
* @param a00 The a00 component of the matrix.
* @param a01 The a01 component of the matrix.
* @param a10 The a10 component of the matrix.
* @param a11 The a11 component of the matrix.
*/
public
Matrix2x2
(
double
a00
,
double
a01
,
double
a10
,
double
a11
)
{
this
.
a00
=
a00
;
this
.
a01
=
a01
;
this
.
a10
=
a10
;
this
.
a11
=
a11
;
}
/**
* Multiply the matrix by a vector., i.e. compute the product of the matrix and the vector.
*
* @return The a00 component of the matrix.
*/
public
Vector2D
multiply
(
Vector2D
v
)
{
return
new
Vector2D
(
a00
*
v
.
getX0
()
+
a01
*
v
.
getX1
(),
a10
*
v
.
getX0
()
+
a11
*
v
.
getX1
());
}
}
Loading