Info

此问题已关闭。 请重新打开它进行编辑或回答。

To pick random data

2 次查看(过去 30 天)
Muruganandham Subramanian
关闭: MATLAB Answer Bot 2021-8-20
Hai all,
I have an sample matrix e.g.
a=[1 2 -8 9 0 5] & b=[6 7 1 5 8]. (a & b matrix will vary, when iteration changes).In these two matrices, i need to pick the data randomly, when any of the data in two matrices are equal

回答(1 个)

Grzegorz Knor
Grzegorz Knor 2012-2-27
a=[1 2 -8 9 0 5];
b=[6 7 1 5 8];
imax = 10;
if any(ismember(a,b))
a = randi(imax,size(a));
b = randi(imax,size(b));
end
Is this the solution to your problem?

此问题已关闭。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by