How to created a web site that can run matlab?

13 views (last 30 days)
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
Jan
Jan on 14 Apr 2015
What kind of "web" do you mean? I cannot imagine what putting some code into a web means.

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 4 May 2015
Edited: Walter Roberson on 4 May 2015

More Answers (2)

Rahul Trivedi
Rahul Trivedi on 20 Oct 2021
x = 0:0.05:5;
y = sin(x.^2);
figure
plot(x,y)

Rahul Trivedi
Rahul Trivedi on 20 Oct 2021
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!