if loop dosen't complete?
1 view (last 30 days)
Show older comments
hey everyone! so i'm working on a function in mathlab that's supposed to create a matrix with random intergers that are non repeating. also if the user wants to have all intergers as evens he can. if the matrix cannot be created the function will say so.
anyway, in the code below it seems like the function has no issues telling me when the matrix can't be created but when the matrix can be created all i get in return is an empty matrix, i removed the ";" sign to see how matlab is attempting to build this matrix but it seems like it nothing happens. it just returns an empty matrix. what did i do wrong here?
thanks for all the helpers!!
function [A] = ex1(n,m,EVENONLY,p,q)
%creates a nXm matrix of random,non-repeating intergers
%that range from p to q. if EVENONLY is set to true the matrix will only
%have even numbers
A=[];
howmany=m*n;
set=[p:1:q];
if howmany>size(set)
disp('this maatrix is impossible to create 1')
elseif howmany>(0.5*size(set)) & EVENONLY==true
disp('this matrix is impossible to create 2')
elseif howmany<=0.5*size(set) & EVENONLY==true
set=set(mod(set,2)==0)
for index=(1:1:n)
a=set(randperm(q,m))
A=[A;a]
end
elseif howmany<=size(set) & EVENONLY==false
for index=(1:1:n)
a=set(randperm(q,m))
A=[A;a]
end
end
return
end
0 Comments
Accepted Answer
DGM
on 18 Jun 2022
size() returns a variable-length vector. Don't compare against the size() of an array if you're trying to compare against a scalar.
if howmany>size(set)
% this will only be entered if howmany is greater than
% the size of all dimensions of the array set
end
What you're trying to check is the number of elements. Use numel() instead of size().
More Answers (0)
See Also
Categories
Find more on Creating and Concatenating Matrices 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!