フィルターのクリア

if loop dosen't complete?

2 ビュー (過去 30 日間)
daniel slama
daniel slama 2022 年 6 月 18 日
コメント済み: daniel slama 2022 年 6 月 18 日
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

採用された回答

DGM
DGM 2022 年 6 月 18 日
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().
  1 件のコメント
daniel slama
daniel slama 2022 年 6 月 18 日
lol, i've been trying to figure out what's wrong for so long and it was that simple.
TYSM!!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by