How to created a web site that can run matlab?

I want to created a web site, look like a online calculator of a special formula that can input data, and output a graph. I know how to write the matlab code, but i don;t know how to put it into a web site. is there any video or article can teach me about that?

1 Comment

What kind of "web" do you mean? I cannot imagine what putting some code into a web means.

Sign in to comment.

More Answers (2)

x = 0:0.05:5;
y = sin(x.^2);
figure
plot(x,y)
x = 0:0.05:5;
y = sin(x.^2);
figure
plot(x,y)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!