Kunal Roy - MATLAB Central
photo

Kunal Roy


2016 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB AnswersFrom 09/16 to 04/25Use left and right arrows to move selectionFrom 09/16Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

14 質問
0 回答

ランク
38,606
of 298,180

評判
1

コントリビューション
14 質問
0 回答

回答採用率
35.71%

獲得投票数
1

ランク
 of 20,546

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 160,541

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Thankful Level 3

バッジを表示

Feeds

表示方法

質問


I execute the following program and none of the variables in the decision tree function and below show up in the workspace? Am I doing something wrong with how I'm defining and using the functions?
load iris.dat %discretizeData discretizedData = zeros(150,5); for i = 1:size(iris,2) currentColumn = i...

8年以上 前 | 0 件の回答 | 0

0

回答

質問


Can someone explain the error? Function with duplicate name dtree cannot be defined
load iris.dat %discretizeData discretizedData = zeros(150,5); for i = 1:size(iris,2) currentColumn = i...

8年以上 前 | 1 件の回答 | 0

1

回答

1

回答

質問


I am new to programming. I need to build a decision tree to classify setosa (class =1 ) against combined virginca and versicolor (class = 2) in matlab
I have tried for days to come up with code. I just can't wrap my head around how I should build a tree and trace back to various...

8年以上 前 | 1 件の回答 | 0

1

回答

質問


I want to create a function best_attribute = findbestattribute(x1,x2,x3,x4) and I want x1, x2, x3 and x4 to be whole columns. How can I do this?
%This is what I have in mind load iris.dat function best_attribute(iris(:,1),iris(:,2),iris(:,3),iris(:,4)) %note t...

8年以上 前 | 1 件の回答 | 0

1

回答

質問


How to discretize?
Suppose I had 51,42,43,56,76,54,34,56,78,80 in a column how would I use discretize function to put the numbers between 50-59 in...

8年以上 前 | 1 件の回答 | 1

1

回答

質問


tree = fitctree(meas,species(50,:)) not working
I want to classify only setosa. Also, how do I determine the best categorical predictor for the split using the best_split_Att...

8年以上 前 | 1 件の回答 | 0

1

回答

質問


how do I get the names of the attributes?
load iris.dat iris(1,1) gives me the first value of the first column how do I access the name of the attribute?

8年以上 前 | 1 件の回答 | 0

1

回答

質問


How can I create an dynamically increasing array to store positions?
load iris.dat for i:size(iris,2)-1 if (iris(:,i)==iris(1,1) %store the row number in a dynamically increas...

8年以上 前 | 0 件の回答 | 0

0

回答

質問


I want to construct three tests.
If I have four columns, x1, x2, x3 and x4 I want to create the following three tests for the first values of all the four colum...

8年以上 前 | 1 件の回答 | 0

1

回答

質問


What is the best matlab data structure to represent a decision tree?
I want to be able to access the level of the tree and the number of nodes and the information of the nodes after a split. What i...

8年以上 前 | 2 件の回答 | 0

2

回答

質問


How to find count of an item in a column of data in matlab?
I need to find probabilities of each class for the implementation of a decision tree, in other words, the calculation of entropy...

8年以上 前 | 2 件の回答 | 0

2

回答

質問


How can I do a 50-50 split on data to obtain train and test datasets such that no value is common to both sets?
I am new to matlab and I can't find a function to do this.

8年以上 前 | 1 件の回答 | 0

1

回答