Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个从matlab的分析判别产生的数据类型单元格,我想在GUI中使用它。
分析判别的结果我们可以这样说:如果我有图片然后我使用图像处理,那么我可以这样说每个对象:
A : 'good' B : 'bad' C : 'good' D : 'bad' E : 'good'
首先,我如何计算有多少“好”和多少“坏”?
第二,当我浏览另一张图片时,如何从图1和图2中累积“好”和“坏”的数量?
您的问题不是很清楚...要回答第一部分,请使用 TABULATE:
>> ratings = {'good','bad','good','bad','good'}; >> tabulate(ratings) Value Count Percent good 3 60.00% bad 2 40.00%