hist command equivalent in java
1 回表示 (過去 30 日間)
古いコメントを表示
Hi i am new to matlab, i need a help. I got a matlab code which uses hist command, i am porting the code to java, is there any equivalent code in java or can anyone give the logic behind hist command i can write it in java or c. Thanks in advance.
5 件のコメント
Walter Roberson
2013 年 7 月 1 日
Do your bins happen to be equally spaced? And if they are, then is acceptable if samples within round-off error of the bin edges might be misclassified ?
回答 (1 件)
Image Analyst
2013 年 6 月 30 日
To construct the histogram an important step is to decide where to put the edges of the bins. To see the code do this:
>> edit hist.m
You can see edges mentioned in several places. Then translate the code into Java or C, whichever you decide on.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Introduction to Installation and Licensing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!