Community Profile

photo

Leon


Last seen: 1日 前 2024 年からアクティブ

Followers: 0   Following: 0

統計

  • Thankful Level 2
  • First Answer

バッジを表示

Feeds

表示方法

質問


kfoldLoss() values have inconsistent precision between different iterations of a loop
I am training an RBF SVM with leave-one-out cross-validation using 94 observations and I am surpised to find that the precision ...

5日 前 | 0 件の回答 | 0

0

回答

質問


Possible to iterate over table rows without a loop index variable?
To iterate over the variables (columns) of a table, you can do this: my_table = table([1; 2; 3], [4; 5; 6], ["Seven"; "Eight"; ...

9日 前 | 1 件の回答 | 0

1

回答

質問


How to output variables properly from a parfor loop
Having read over the documentation and Googled, I have an idea of what I'm not allowed to do in a parfor loop, but can't seem to...

9日 前 | 1 件の回答 | 0

1

回答

回答済み
How can I check whether an argument is given or not (inputParser)?
Is there any reason not to use exist("arg_name", "var") ? It doesn't give a false positive for a global of the same name. Maybe...

2ヶ月 前 | 0

質問


Create confusion matrix from LDA model
It is easy to train an LDA model and find its accuracy by cross-validation as below: Mdl = fitcdiscr(data, "Response_var_name",...

2ヶ月 前 | 1 件の回答 | 0

1

回答

質問


What is the best way to add empty rows to an existing table, to pre-allocate for more data?
Let's say I have a table that has 100 rows of ten variables and now I know I am going to need another 100 rows (or perhaps 100,0...

4ヶ月 前 | 2 件の回答 | 1

2

回答

回答済み
How do I rename fields of a structure array?
Until Matlab (hopefully) introduces a rename field function, I would convert to a table then use renamevars() and then convert b...

4ヶ月 前 | 0