Skip to content

Commit ffc5a6a

Browse files
authored
Merge pull request #20 from JuliaSMLM/addd_documentation
add documentation
2 parents 99a47e2 + 425ee27 commit ffc5a6a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/diffusion/dimer.jl

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
# Tools for analyzing dimers
22

33
#get molecules that are in linked states
4+
"""
45
6+
get_dimers(states::MoleculeHistory)
7+
8+
create a array of vector of type MoleculeFrame that takes the frames in a the input states and pass it to the MoleculeHistory function
9+
10+
# Arguments
11+
- states::MoleculeHistory : the estates of the molecule
12+
13+
# Returns
14+
- MoleculeHistory(states.dt, dimer_frames) : return the function MoleculeHistory
15+
16+
"""
517
function get_dimers(states::MoleculeHistory)
618
dimer_frames = Vector{MoleculeFrame}()
719
for frame in states.frames

0 commit comments

Comments
 (0)