Open holyjak opened 1 month ago
While wolframite.impl.wolfram-syms.intern/wolfram-fn is primarily an internal function, it can be useful, f.ex. to create wrapper vars for symbols that are not in wolframite.wolfram, such as this case:
wolframite.impl.wolfram-syms.intern/wolfram-fn
wolframite.wolfram
(def StringToMReal (wolframite.impl.wolfram-syms.intern/wolfram-fn 'Internal/StringToMReal)) (wl/eval (StringToMReal "12.34")) ;; => 12.34
It doesn't seem to belong to the core ns itself. Perhaps wolframite.utils or some such?!
wolframite.utils
TODO: If we do this, then update the demo_analysis_cycling.clj using it.
demo_analysis_cycling.clj
While
wolframite.impl.wolfram-syms.intern/wolfram-fn
is primarily an internal function, it can be useful, f.ex. to create wrapper vars for symbols that are not inwolframite.wolfram
, such as this case:It doesn't seem to belong to the core ns itself. Perhaps
wolframite.utils
or some such?!TODO: If we do this, then update the
demo_analysis_cycling.clj
using it.