finding boundaries
1 view (last 30 days)
Show older comments
I have an matrix ,i have found minimum and maximum valure for it ,please tell how to do the following
ho to Initialize all possible interval boundaries B with the minimum and maximum
[Merged from duplicate]
i have dataset
age attribute=[3;56;15;17;21;35;45;46;51;56;57;66;70;71]
please tell how to process the following ------CACC USED BELOW refers to discretization algorithm
CACC finds the minimum (d0 = 3) and maximum (dn = 71) of the age attribute, and then sorts all values in ascending order. The Globalcacc is set to 0 as default. In the first loop, CACC gets the cutting point for which the maximum cacc (=0.5045) is age = 10.50. Since 0.5045 > Globalcacc (=0), CACC updates the Globalcacc = 0.5045 and runs the second loop. At this point, the attribute age is discretized into two intervals: [3.00, 10.50] and (10.50, 71]. Similarly, CACC generates the second cutting point at 61.50 and its corresponding cacc (=0.6473) > Globalcacc (=0.5045), so that Globalcacc is updated to 0.6473 and the third loop is processed. CACC continues to follow the same process for the third cutting point (age = 28.00) with the corresponding Globalcacc = 0.6612, and for the fourth cutting point (age = 48.50) with the corresponding
10 Comments
Walter Roberson
on 5 Jan 2012
We assume on this forum that you have already studied the theory behind what you want to do, and that you can explain the key points in an understandable manner. This forum is for assistance with the MATLAB language, not for assistance in understanding theory papers.
And it is time for me to estivate.
Answers (1)
Walter Roberson
on 6 Jan 2012
Your duplicate question has been deleted and the content moved to here.
Your duplicate still had far far too many "magic numbers" for anyone to make any sense of.
4 Comments
See Also
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!