0
A
回答
4
爲什麼不生成1:126之間的值,如果它是64或更多,添加一個?
我不會寫代碼(我不記得Matlab的語法),但像這樣的僞C#代碼會做你想要什麼:
var value = nextRandom(1, 126);
if (value >= 64)
value++;
return value;
4
這是基本的Wai Ha Lee轉換將MATLAB的語法中的answer。
A = randi([1 126], 127, 1); %Generating 127 random integers from 1 to 126
A(A>=64)= A(A>=64)+1; %Adding 1 to the integers from 64 to 126
相關問題
- 1. 排除在MATLAB
- 2. 如何排除MatLab表中的空行?
- 3. 如何從zipgroupfileset中排除?
- 4. 如何從排除錨「e.stopPropagation()」
- 5. 如何在matlab中消除?
- 6. Matlab循環故障排除
- 7. 如何從在Matlab
- 8. 如何排除從分析GlobalSuppressions.cs在VS2015
- 9. matlab如何進行排序?
- 10. 如何排除除
- 11. 如何比較的排在MATLAB
- 12. 如何從MATLAB
- 13. 如何從MATLAB
- 14. 如何從F(Z)在Matlab
- 15. 如何排除在htaccess的
- 16. 如何排除在SQL
- 17. 如何排除在行家
- 18. 如何排除在發現
- 19. MATLAB:如何在Matlab
- 20. 如何從排除模塊(ES6)導入?
- 21. 如何從另一個QuerySet中排除?
- 22. 如何從android shrinkResources中排除資源?
- 23. Php - 如何從mysql中排除數據
- 24. 如何排除元素從父母CSS
- 25. 如何從數組中排除項目?
- 26. 如何從Greasemonkey腳本中排除amazon.com?
- 27. 如何從inotify/incron中排除PATTERN
- 28. 如何從eclipse項目中排除類
- 29. 如何從SimpleMappingExceptionResolver中排除ClientAbortException
- 30. 如何排除從ProGuard的混淆
只是繼續生成隨機數,直到你得到一個不是64 –
不會像循環?我想一次性得到這些數字。 – sanjeev