Contains function
generate-dimmatGiven
(def varpars [ {:symbol "x", :quantity "length"}
{:symbol "v", :quantity "velocity"}
{:symbol "t", :quantity "time"}
{:symbol "a", :quantity "acceleration"} ])
to get the dimensional matrix of the system containing (only) the above dimensional quantities
=> (generate-dimmat varpars)
[[1N 1N 0 1N] [0 -1N 1N -2N]]
Contains function
- `generate-dimmat`
Given
```
(def varpars [ {:symbol "x", :quantity "length"}
{:symbol "v", :quantity "velocity"}
{:symbol "t", :quantity "time"}
{:symbol "a", :quantity "acceleration"} ])
```
to get the [dimensional matrix](https://neuralgraphs.com/lectures/diman/lectp8.html#p4_thispage) of the system containing (only) the above dimensional quantities
```
=> (generate-dimmat varpars)
[[1N 1N 0 1N] [0 -1N 1N -2N]]
```
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |