if loop dosen't complete?
Afficher commentaires plus anciens
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
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!