removed unnused data

This commit is contained in:
behinger (s-ccs 001)
2023-10-05 19:34:08 +00:00
parent e7a5c927ae
commit 294790899d
14 changed files with 1024 additions and 21078 deletions

View File

@@ -21,10 +21,6 @@ VSCode automatically loads the `Revise.jl` package, which screens all your activ
## Syntax differences Python/R/MatLab
### In the beginning there was `nothing`
`nothing`- but also `NaN` and also `Missing`.
Each of those has a specific purpose, but most likely we will only need `a = nothing` and `b = NaN`.
### Control Structures
@@ -94,6 +90,14 @@ end
myfunction(args...;kwargs...) = myotherfunction(newarg,args...;kwargs...)
```
### In the beginning there was `nothing`
`nothing`- but also `NaN` and also `Missing`.
Each of those has a specific purpose, but most likely we will only need `a = nothing` and `b = NaN`.
Note that `NaN` counts as a Float-Number, whereas nothing & missing does not.
#### Excourse: splatting & slurping
Think of it as unpacking / collecting something