Making a Function with output only, no input

265 views (last 30 days)
Need to start by hardcoding the test data into two 1D arrays. X's are 1, 2, and 3 and y's are 4, 5, and 8. The input parameters to the function will be void (that is, no input) and the output will be the two arrays defined in the function. Once you program works, I can then substitute the experimental data. Therefore, I want the size of the pre-allocated arrays to be as large as the largest set of data I expect to have.
  2 Comments
dpb
dpb on 8 Nov 2019
Matlab allocates on assignment...the arrays will be whatever size you create them as. There's really no point in a function here at all...just put the data into a file and read it. But, the form of the function would be
function [x,y]=returnxy()
x=[...]; % your data here
y=[...]; % your data here
end
Ahmad Mushtaq
Ahmad Mushtaq on 8 Nov 2019
So this is what I did before even and I only get the one array output.
getData1.jpg

Sign in to comment.

Accepted Answer

KSSV
KSSV on 8 Nov 2019
Run / call the function by typing as below in the command window.
[x,y] = getData() ;

More Answers (0)

Products

Community Treasure Hunt

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

Start Hunting!