Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using twice;
- using MathWorks.MATLAB.NET.Arrays;
- using MathWorks.MATLAB.NET.Utility;
- namespace MatlabToCsharpDotNetLibSample
- {
- class Program
- {
- static void Main(string[] args)
- {
- int i = 5;
- Twice c = new Twice();
- MWArray result = c.twice((MWArray)i);
- System.Console.WriteLine(Convert.ToInt16(result.ToString()) + 5);
- System.Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement