Skip to content

Commit 8b7da9d

Browse files
committed
repaired
1 parent a85a9a8 commit 8b7da9d

File tree

1 file changed

+23
-4
lines changed

1 file changed

+23
-4
lines changed

README.md

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@ This package, DesignStructureMatrix offers tools for displaying and analysing DS
1616
## Installation
1717

1818
In Pkg mode(Please hit `]`)
19+
1920
`(v1.1) pkg> add https://github.com/Otepipi/DesignStructureMatrix.jl`
2021

2122
When you use this package, please type
23+
2224
`julia> using DesignStructureMatrix`
2325

2426
## Displaying DSM
@@ -68,14 +70,15 @@ To display DSM, please type
6870
plotDSM(A,label)
6971
```
7072
then
73+
7174
![](https://user-images.githubusercontent.com/35882132/59391598-bf501300-8daf-11e9-923b-72509125d567.png)
7275

7376

7477
## Clustering DSM
7578

7679
One of useful ways for analysing DSM is Clustering.
7780

78-
Original DSM is here
81+
Original DSM is below
7982
```julia
8083
original_DSM = [ 0 1 0 0 1 1 0;
8184
0 0 0 1 0 0 1;
@@ -91,6 +94,7 @@ plotDSM(original_DSM,original_label)
9194

9295
```
9396
original_DSM
97+
9498
![ClusteroriginalDSM](https://user-images.githubusercontent.com/35882132/59392360-54eca200-8db2-11e9-8fa3-6062f31045e5.png)
9599

96100

@@ -111,7 +115,7 @@ then, you get clustered DSM
111115

112116
Another way for analysing DSM is seaquencing.
113117

114-
Original DSM is here
118+
Original DSM is below
115119
``` julia
116120
original_DSM = [0 0 0 0 0 0 0 0 0 0 0 0 0;
117121
0 0 0 1 0 0 0 0 0 0 0 0 0;
@@ -134,7 +138,8 @@ original_label = ["1", "2", "3", "4", "5", "6", "7", "8",
134138
plotDSM(original_DSM,original_label)
135139

136140
```
137-
original DSM is here
141+
original DSM
142+
138143
![SequencingoriginalDSM](https://user-images.githubusercontent.com/35882132/59393683-9cc1f800-8db7-11e9-9bb5-f2af79c7f7e9.png)
139144

140145
To get Sequenced DSM, please type
@@ -150,4 +155,18 @@ then, you get sequenced DSM
150155
![SequencedDSM](https://user-images.githubusercontent.com/35882132/59393832-2d003d00-8db8-11e9-9147-cad34b77a2c7.png)
151156

152157

153-
##Refe
158+
## Reference
159+
160+
#### Clustering algorithm
161+
162+
>Figueiredo Damásio, J., Almeida Bittencourt, R., Dario, D., & Guerrero, S. (n.d.). Recovery of Architecture Module Views using an Optimized Algorithm Based on Design Structure Matrices. Retrieved from https://arxiv.org/ftp/arxiv/papers/1709/1709.07538.pdf
163+
164+
#### Sequencing algorithm
165+
166+
>Warfield, J. N. (1973). Binary Matrices in System Modeling. IEEE Transactions on Systems, Man and Cybernetics, 3(5), 441–449. https://doi.org/10.1109/TSMC.1973.4309270
167+
168+
169+
And original DSM in chapter `Sequencing DSM` is from the below article
170+
171+
172+
>Yassine, A. A. (2004). An Introduction to Modeling and Analyzing Complex Product Development Processes Using the Design Structure Matrix ( DSM ) Method. Urbana, (January 2004), 1–17. Retrieved from http://ie406.cankaya.edu.tr/uploads/files/Modeling and Analyzing Complex Product Development Processes Using the Design Structure Matrix.pdf

0 commit comments

Comments
 (0)