代码搜索结果

找到约 10,000 项符合 U 的代码

u_rbfsvc.m

function [AlphaY, SVs, Bias, Parameters, nSV, nLabel] = u_RbfSVC(Samples, Labels, Gamma, C) % USAGES: % [AlphaY, SVs, Bias, Parameters, nSV, nLabel] = u_RbfSVC(Samples, Labels) % [AlphaY, SV

u_linearsvc.m

function [AlphaY, SVs, Bias, Parameters, nSV, nLabel] = u_LinearSVC(Samples, Labels,C) % USAGES: % [AlphaY, SVs, Bias, Parameters, nSV, nLabel] = u_LinearSVC(Samples, Labels) % [AlphaY, SVs,

u_xmit.v

// // U_XMIT.v // // This is the asynchronous transmitter // portion of the UART. // module u_xmit( sys_clk, sys_rst_l, uart_xmitH, xmitH, xmit_dataH, xmit_doneH

u_rec.v

// // U_REC.v // // www.cmosexod.com // 4/13/2001 (c) 2001 // Jeung Joon Lee // // This is the receiver portion of the UART. // // module u_rec ( // system connections sys_rst_l,

u_intout.c

#include void main () { unsigned int value = 42000; printf("Displaying 42000 as unsigned %u\n", value); printf("Displaying 42000 as int %d\n", value); }