mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
lots of stuff
This commit is contained in:
@ -127,14 +127,13 @@ void pm(int M, int N, float *A)
|
||||
for(i =0 ; i < M; ++i){
|
||||
printf("%d ", i+1);
|
||||
for(j = 0; j < N; ++j){
|
||||
printf("%10.6f, ", A[i*N+j]);
|
||||
printf("%2.4f, ", A[i*N+j]);
|
||||
}
|
||||
printf("\n");
|
||||
}
|
||||
printf("\n");
|
||||
}
|
||||
|
||||
|
||||
char *find_replace(char *str, char *orig, char *rep)
|
||||
{
|
||||
static char buffer[4096];
|
||||
|
Reference in New Issue
Block a user