enhanced help message
parent
6404dc5f5c
commit
6e52dfee87
|
@ -40,7 +40,7 @@ The running time will be return in seconds.
|
||||||
|
|
||||||
# Examples
|
# Examples
|
||||||
```julia-repl
|
```julia-repl
|
||||||
julia> trainrun(train, path)
|
julia> trainrun(train, path)[end,:t]
|
||||||
xxx.xx # in seconds
|
xxx.xx # in seconds
|
||||||
```
|
```
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -14,7 +14,8 @@ The function Settings() will create a set of settings for the train run calculat
|
||||||
# Example
|
# Example
|
||||||
```
|
```
|
||||||
julia> my_settings = Settings() # will generate default settings
|
julia> my_settings = Settings() # will generate default settings
|
||||||
Settings(mass_point, :distance, 20, 3, running_time, :dataframe)
|
# massModel, stepVariable, stepSize, approxLevel, outputDetail, outputFormat
|
||||||
|
Settings(:mass_point, :distance, 20, 3, :running_time, :dataframe)
|
||||||
```
|
```
|
||||||
"""
|
"""
|
||||||
function Settings(file="DEFAULT")
|
function Settings(file="DEFAULT")
|
||||||
|
|
Loading…
Reference in New Issue