using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using MathWorks.
using MathWorks.
using matlab_add;
public partial class first : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
matlab_add.class_add aplusb = new matlab_add.class_add();
MWCharArray x1 = TextBox1.Text;
MWCharArray x2 = TextBox2.Text;
MWArray[] my_result;
my_result = aplusb.matlab_add(1, (MWArray)x1, (MWArray)x2);
TextBox3.Text = my_result[0].ToString();
}
protected void TextBox1_TextChanged(object sender, EventArgs e)
{
}
}