- list_of_rng_seed
- list_of_rng_seed s
Info
この質問は閉じられています。 編集または回答するには再度開いてください。
could anyone help me to overcome the error in the following code
1 回表示 (過去 30 日間)
古いコメントを表示
Code:
list_of_rng_seeds = {[12, 2 ,1], [3, 4 ,5 ,6, 7],[8 ,9, 10]}
for seed_idx = 1 : length(list_of_rng_seeds)
list_of_rng_seed = list_of_rng_seeds{seed_idx}
for rng_usage_idx = 1 : length(list_of_rng_seeds)
this_seed = list_of_rng_seeds(rng_usage_idx)
fprintf('Below results are for rng = %d\n', this_seed);
rng(this_seed)
unused_rows = 1:4
while ~isempty(unused_rows)
N_UE_rows = 2
rows=unused_rows(randsample(length(unused_rows),N_UE_rows))
[~,idx]=find(ismember(unused_rows,rows))
unused_rows(idx)=[]
end
end
end
If i run the code i am getting Error using fprintf Function is not defined for 'cell' inputs. Error in line 10 fprintf('Below results are for rng = %d\n', this_seed); could anyone help me to overcome it.
0 件のコメント
回答 (1 件)
Pawel Jastrzebski
2018 年 4 月 5 日
編集済み: Pawel Jastrzebski
2018 年 4 月 5 日
I believe that the 5ht line of code should be changed to (the variable without the -s):
this_seed = list_of_rng_seed(rng_usage_idx)
I can't check the rest of the code as I don't have the Statistical Toolbox. Also a piece of advice, it's probably not a good idea to have almost identical names for the variables:
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!