Variable user inputs (ie test numbers) to be used in a function
Show older comments
Hello,
I am trying to write a code to allow a user to enter multiple test numbers which will then be processed using a function that I have already written (euro).
The test numbers will be in the format CX 2013-05-30 XX (test facility code, date, test reference number).
What I would like to happen is the user enters a number of tests into command interface (or external UI) which is written into a matrix (so I can call each number in turn into the function). It would also be preferable that the number of user input are also recorded for the loops.
Anyone here have any advice?
Cheers
Matt
2 Comments
Daniel Shub
on 31 May 2013
Where are you stuck? What is the question?
Matthew
on 6 Jun 2013
Answers (2)
Iain
on 6 Jun 2013
Don't use the command line unless you REALLY have to.
list = {};
more = true;
while more
string = input('enter your stuff');
if strcmpi(string,'some "end" code')
more = false;
else
... process and store string in the right fashion, and log it
end
end
I would suggest that you use excel instead. That way your user writes a spreadsheet logging stuff, and use "xlsread" in the way you want to get the data. Or read it from a text file.
David Sanchez
on 6 Jun 2013
nargin will do.
In your function, add conditions checking the number of input arguments (nargin).
doc nargin
will tell you what you need
Categories
Find more on Get Started with MATLAB in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!