代码搜索:Testing
找到约 10,000 项符合「Testing」的源代码
代码结果 10,000
www.eeworm.com/read/468922/6981894
m decision_ica_final.m
% This code used to apply ICA(Independent Component Analysis) to make a recognition
% to images or any patterns
% This code is edited by Eng. Alaa Tharwat Abd El.
www.eeworm.com/read/468922/6981904
m decision_pca_final.m
% This code used to apply PCA(Principal Component Analysis) to make a recognition
% to images or any patterns
% This code is edited by Eng. Alaa Tharwat Abd El. Mo
www.eeworm.com/read/468922/6981914
m decision_lda_final.m
% This code used to apply LDA(Linear Discriminant Analysis) to make a recognition
% to images or any patterns
% This code is edited by Eng. Alaa Tharwat Abd El. Mo
www.eeworm.com/read/468922/6981950
m decision_dct_final.m
% This code used to apply DCT(Discrete Cosine Transform) to make a recognition
% to images or any patterns
% This code is edited by Eng. Alaa Tharwat Abd El. Monaa
www.eeworm.com/read/189342/7115121
c streql.c
#include
int streql(char *str1, char *str2)
{
while ((*str1 == *str2) && (*str1))
{
str1++;
str2++;
}
return((*str1 == NULL) && (*str2 == NULL));
www.eeworm.com/read/189342/7115124
c strieql.c
#include
#include
int strieql(char *str1, char *str2)
{
while ((toupper(*str1) == toupper(*str2)) && (*str1))
{
str1++;
str2++;
}
return
www.eeworm.com/read/219035/7147278
m show_pos.m
function show_pos(oGd, pos)
% SHOW_POS(oGd, positions)
% Shows the positions of sources and testing points for geometry oGd and
% position coordinates positions.
hold off
iCurve = 1:length(po
www.eeworm.com/read/464359/7164508
h vc0528test.h
//#define PYTHON
#define COMMAND858 0x84
#define cV858_HIF8_WRITE 0x8481
#define cV858_HIF8_READ 0x8482
#define cV858_HIF16_WRITE 0x8483
#define cV858_HIF16_READ 0x848
www.eeworm.com/read/453496/7418454
c streql.c
#include
int streql(char *str1, char *str2)
{
while ((*str1 == *str2) && (*str1))
{
str1++;
str2++;
}
return((*str1 == NULL) && (*str2 == NULL));
www.eeworm.com/read/453496/7418457
c strieql.c
#include
#include
int strieql(char *str1, char *str2)
{
while ((toupper(*str1) == toupper(*str2)) && (*str1))
{
str1++;
str2++;
}
return