i need help on making loop for given equation
2 ビュー (過去 30 日間)
古いコメントを表示
hello professionals.. I have problem in making loop for given equation ab-cd=1..in this i have to choose random value for a and c but b and d are previously calculated.if value of ab-cd equal to one then display otherwise goes to step where a and c are randomly selected.can u plz help me regarding this..thanks alot
0 件のコメント
採用された回答
Ammar
2013 年 4 月 11 日
for i = 1:M
a = rand(1);
c = rand(1);
res = a*b - c*d;
if res == 1
disp('')
end
end
0 件のコメント
その他の回答 (1 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!