Exemplo n.º 1
0
        public void TestCreateComplexCommand_InvalidSession()
        {
            MatlabEngine engine = new MatlabEngine();

            engine.Shutdown();

            engine.CreateCommand(new string[] { });
        }
Exemplo n.º 2
0
        public void TestCreateCommand_InvalidSession()
        {
            string       cmdText = "b=a*a";
            MatlabEngine engine  = new MatlabEngine();

            engine.Shutdown();
            engine.CreateCommand(cmdText);
        }