代码搜索:概率分析

找到约 10,000 项符合「概率分析」的源代码

代码结果 10,000
www.eeworm.com/read/170384/9808578

m phyf.m

% 由先验概率、类条件概率密度计算后验概率 function[phyfv]=phyf(p1,p2,ptj1,ptj2) phyfv(1,:)=ptj1*p1./(ptj1*p1+ptj2*p2); phyfv(2,:)=ptj2*p2./(ptj1*p1+ptj2*p2);