CQ2 - Auburn University

advertisement
CHEN3600 – Computer-Aided Chemical Engineering
Chemical Engineering Department
T.D. Placek
Spring 2012
CQ2
Auburn University
CQ2 – Filling Vectors with Randomly Selected Values
DO NOT SUBMIT YOUR SOLUTION!
Create a function file named email_Random_Fill. The following code should be placed in
the file:
function placetd_Random_Fill()
% The Random_Fill Function will select "n" values randomly between "a" and
% "b" without repeating a value. If it is not possible to fulfill the
% request, a vector of length "n" should be returned containing all zeroes.
disp(Random_Fill(1,10,1,5));
disp(Random_Fill(1,10,1,10));
disp(Random_Fill(1,10,1,10)); %tests to see that the arrangement is unique
disp(Random_Fill(100,200,5,5));
disp(Random_Fill(10,20,0.5,15));
disp(Random_Fill(10,20,0.5,50)); % tests to see that zeroes are returned
end
Write the necessary MATLAB subfunction to perform the action indicated in the
description.
Hint: There are two approaches (at least) that can be employed.
wish to try them both for practice.
You may
Method (1): Generate a random number using a,b,s and see if it is not yet in
your vector. If true, place it in the vector and continue looking for the
next unique value until you satisfy the constraint “n”.
Method (2): Generate a vector which contains all possible values using
a,b,s. Make a random selection between 1 and n and place the corresponding
value from the vector of available values in your return vector. Replace the
value in your vector of available values with the last value in the vector
and reduce its length by one. Select from the remaining n-1 values, etc.
Download