How do I publish results with an input command?

26 views (last 30 days)
When I publish my code, I get an error saying there is no value for n. This is correct,so I'm wondering if there is a way to publish while saying n =8. I'm trying to make a random number column vector nx1 then sort it by descending values.
here is my code:
n=input(' enter an integer:');
v=randn(n,1)
w=sort(v,'descend')

Accepted Answer

Hamoon
Hamoon on 9 Sep 2015
publish(file,'evalCode',false)
  3 Comments
Hamoon
Hamoon on 10 Sep 2015
save your script as mycode.m then execute this:
publish('myCode.m','evalCode',false)
As you know if your current folder is different from where you saved your script, you need to pass the full path of your script. eg.
publish('C:\work\myCode.m','evalCode',false)

Sign in to comment.

More Answers (1)

San N
San N on 16 Dec 2020
IF I want to publish the outputs after getting an input from user, how can I do it ?

Categories

Find more on MATLAB Report Generator in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!