This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Import packages | |
require 'torch' | |
require 'gnuplot' | |
-------------------------------------- | |
-- Define the Kalman filter 'class' -- | |
-------------------------------------- | |
-- Constructor | |
Kalman = {} | |
Kalman.__index = Kalman |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Save a file in ~/.murano/plugins/scriptdump.rb | |
# | |
command '_s dump' do |c| | |
c.syntax = %{mr _s dump} | |
c.summary = %{dump combined script} | |
c.description = %{dump combined script} | |
c.action do |args, options| | |
sid = $cfg['application.id'] |