1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524
|
/** \file
The apop_data structure joins together a gsl_matrix, apop_name, and a table of strings. */
/* Copyright (c) 2006--2009 by Ben Klemens. Licensed under the GPLv2; see COPYING. */
#include "apop_internal.h"
//apop_gsl_error is in apop_linear_algebra.c
#define Set_gsl_handler gsl_error_handler_t *prior_handler = gsl_set_error_handler(apop_gsl_error);
#define Unset_gsl_handler gsl_set_error_handler(prior_handler);
/** Allocate an \ref apop_data structure.
\li The typical case is three arguments, like <tt>apop_data_alloc(2,3,4)</tt>: vector size, matrix rows, matrix cols. If the first argument is zero, you get a \c NULL vector.
\li Two arguments, <tt>apop_data_alloc(2,3)</tt>, would allocate just a matrix, leaving the vector \c NULL.
\li One argument, <tt>apop_data_alloc(2)</tt>, would allocate just a vector, leaving the matrix \c NULL.
\li Zero arguments, <tt>apop_data_alloc()</tt>, will produce a basically blank set, with \c out->matrix and \c out->vector set to \c NULL.
For allocating the text part, see \ref apop_text_alloc.
The \c weights vector is set to \c NULL. If you need it, allocate it via
\code d->weights = gsl_vector_alloc(row_ct); \endcode
\return The \ref apop_data structure, allocated and ready to be populated with data.
\exception out->error=='a' Allocation error. The matrix, vector, or names couldn't be <tt>malloc</tt>ed, which probably means that you requested a very large data set.
\li An \ref apop_data struct, by itself, is about 72 bytes. If I can't allocate that much memory, I return \c NULL.
But if even this much fails, your computer may be on fire and you should go put it out.
\li This function uses the \ref designated syntax for inputs.
\see apop_data_calloc
*/
#ifdef APOP_NO_VARIADIC
apop_data * apop_data_alloc(const size_t size1, const size_t size2, const int size3){
#else
apop_varad_head(apop_data *, apop_data_alloc){
const size_t apop_varad_var(size1, 0);
const size_t apop_varad_var(size2, 0);
const int apop_varad_var(size3, 0);
return apop_data_alloc_base(size1, size2, size3);
}
apop_data * apop_data_alloc_base(const size_t size1, const size_t size2, const int size3){
#endif
size_t vsize=0, msize1=0;
int msize2=0;
if (size3){
vsize = size1;
msize1 = size2;
msize2 = size3;
}
else if (size2) {
msize1 = size1;
msize2 = size2;
}
else vsize = size1;
apop_data *setme = malloc(sizeof(apop_data));
Apop_stopif(!setme, return NULL, -5, "malloc failed. Probably out of memory.");
*setme = (apop_data) { }; //init to zero/NULL.
Set_gsl_handler
if (msize2 > 0 && msize1 > 0){
setme->matrix = gsl_matrix_alloc(msize1,msize2);
Apop_stopif(!setme->matrix, setme->error='a'; return setme,
0, "malloc failed on a %zu x %i matrix. Probably out of memory.", msize1, msize2);
}
if (vsize){
setme->vector = gsl_vector_alloc(vsize);
Apop_stopif(!setme->vector, setme->error='a'; return setme,
0, "malloc failed on a vector of size %zu. Probably out of memory.", vsize);
}
Unset_gsl_handler
setme->names = apop_name_alloc();
Apop_stopif(!setme->names, setme->error='a'; return setme,
0, "couldn't allocate names. Probably out of memory.");
return setme;
}
/** Allocate a \ref apop_data structure, to be filled with data; set everything in the allocated portion to zero. See \ref apop_data_alloc for details.
\return The \ref apop_data structure, allocated and zeroed out.
\exception out->error=='a' allocation error; probably out of memory.
\li This function uses the \ref designated syntax for inputs.
\see apop_data_alloc
*/
#ifdef APOP_NO_VARIADIC
apop_data * apop_data_calloc(const size_t size1, const size_t size2, const int size3){
#else
apop_varad_head(apop_data *, apop_data_calloc){
const size_t apop_varad_var(size1, 0);
const size_t apop_varad_var(size2, 0);
const int apop_varad_var(size3, 0);
return apop_data_calloc_base(size1, size2, size3);
}
apop_data * apop_data_calloc_base(const size_t size1, const size_t size2, const int size3){
#endif
size_t vsize=0, msize1=0;
int msize2=0;
if (size3){
vsize = size1;
msize1 = size2;
msize2 = size3;
}
else if (size2) {
msize1 = size1;
msize2 = size2;
}
else vsize = size1;
apop_data *setme = malloc(sizeof(apop_data));
Apop_stopif(!setme, apop_return_data_error('a'), 0, "malloc failed. Probably out of memory.");
*setme = (apop_data) { }; //init to zero/NULL.
if (msize2 >0 && msize1 > 0){
setme->matrix = gsl_matrix_calloc(msize1,msize2);
Apop_stopif(!setme->matrix, apop_return_data_error('a'), 0, "malloc failed on a %zu x %i matrix. Probably out of memory.", msize1, msize2);
}
if (vsize){
setme->vector = gsl_vector_calloc(vsize);
Apop_stopif(!setme->vector, apop_return_data_error('a'), 0, "malloc failed on a vector of size %zu. Probably out of memory.", vsize);
}
setme->names = apop_name_alloc();
return setme;
}
/*For a touch of space saving, blank strings in a text grid
all point to the same nul string. */
char *apop_nul_string = "";
static void apop_text_blank(apop_data *in, const size_t row, const size_t col){
if (in->text[row][col] != apop_nul_string) free(in->text[row][col]);
in->text[row][col] = apop_nul_string;
}
/** Free a matrix of chars* (i.e., a char***).
This is what \c apop_data_free uses internally to deallocate the \c text element of
an \ref apop_data set. You may never need to use it directly.
Sample usage:
\code
apop_text_free(yourdata->text, yourdata->textsize[0], yourdata->textsize[1]);
\endcode
*/
void apop_text_free(char ***freeme, int rows, int cols){
if (rows && cols)
for (int i=0; i < rows; i++){
for (int j=0; j < cols; j++)
if(freeme[i][j]!=apop_nul_string)
free(freeme[i][j]);
free(freeme[i]);
}
free(freeme);
}
/** Free the elements of the given \ref apop_data set and then the \ref apop_data set
itself. Intended to be used by \ref apop_data_free, a macro that calls this to free
elements, then sets the value to \c NULL.
\li \ref apop_data_free is a macro that calls this function and, on success, sets the input pointer to \c NULL.
For typical cases, that's slightly more useful than this function.
\exception freeme.error='c' Circular linking is against the rules. If <tt>freeme->more == freeme</tt>, then
I set <tt>freeme.error='c'</tt> and return. If you send in a structure like A -> B ->
B, then both data sets A and B will be marked.
\return \c 0 on OK, \c 'c' on error.
*/
char apop_data_free_base(apop_data *freeme){
if (!freeme) return 0;
if (freeme->more){
Apop_stopif(freeme == freeme->more, freeme->error='c'; return 'c',
1, "the ->more element of this data set equals the data set itself. "
"This is not healthy. Not freeing; marking your data set with error='c'.");
if (apop_data_free_base(freeme->more))
Apop_stopif(freeme->more->error == 'c', freeme->error='c'; return 'c',
1, "Propagating error code to parent data set");
}
if (freeme->vector)
gsl_vector_free(freeme->vector);
if (freeme->matrix)
gsl_matrix_free(freeme->matrix);
if (freeme->weights)
gsl_vector_free(freeme->weights);
apop_name_free(freeme->names);
apop_text_free(freeme->text, freeme->textsize[0] , freeme->textsize[1]);
free(freeme);
return 0;
}
/** Copy one \ref apop_data structure to another.
This function does not allocate the output structure or the vector, matrix, text,
or weights elements---I assume you have already done this and got the dimensions
right. I will assert that there is at least enough room in the destination for your
data, and fail if the copy would write more elements than there are bins.
\li If you want space allocated or are unsure about dimensions, use \ref apop_data_copy.
\li If both \c in and \c out have a \c more pointer, also copy subsequent page(s).
\li You can use the subsetting macros, \ref Apop_r, \ref Apop_rs, \ref Apop_c,
and so on, to copy within a data set:
\code
//Copy the contents of row i of mydata to row j.
apop_data *fromrow = Apop_r(mydata, i);
apop_data *torow = Apop_r(mydata, j);
apop_data_memcpy(torow, fromrow);
// or just
apop_data_memcpy(Apop_r(mydata, i), Apop_r(mydata, j));
\endcode
\param out A structure that this function will fill. Must be preallocated with the appropriate sizes.
\param in The input data.
\exception out.error='d' Dimension error.
\exception out.error='p' Part missing; e.g., in->matrix exists but out->matrix doesn't.
*/
void apop_data_memcpy(apop_data *out, const apop_data *in){
Apop_stopif(!out, return, 0, "you are copying to a NULL matrix. Do you mean to use apop_data_copy instead?");
Apop_stopif(out==in, return, 1, "out==in. Doing nothing.");
if (in->matrix){
Apop_stopif(!out->matrix, out->error='p'; return, 1, "in->matrix exists but out->matrix does not.");
Apop_stopif(in->matrix->size1 != out->matrix->size1 || in->matrix->size2 != out->matrix->size2,
out->error='d'; return,
1, "you're trying to copy a (%zu X %zu) into a (%zu X %zu) matrix.",
in->matrix->size1, in->matrix->size2, out->matrix->size1, out->matrix->size2);
gsl_matrix_memcpy(out->matrix, in->matrix);
}
if (in->vector){
Apop_stopif(!out->vector, out->error='p'; return, 1, "in->vector exists but out->vector does not.");
Apop_stopif(in->vector->size != out->vector->size,
out->error='d'; return,
1, "You're trying to copy a %zu-elmt "
"vector into a %zu-elmt vector.", in->vector->size, out->vector->size);
gsl_vector_memcpy(out->vector, in->vector);
}
if (in->weights){
Apop_stopif(!out->weights, out->error='p'; return, 1, "in->weights exists but out->weights does not.");
Apop_stopif(in->weights->size != out->weights->size,
out->error='d'; return,
1, "Weight vector sizes don't match: "
"you're trying to copy a %zu-elmt vector into a %zu-elmt vector.",
in->weights->size, out->weights->size);
gsl_vector_memcpy(out->weights, in->weights);
}
if (in->names){
if (!out->names) out->names = apop_name_alloc();
Asprintf(&out->names->title, "%s", in->names->title);
if (out->names->vector && in->names->vector) {Asprintf(&out->names->vector, "%s", in->names->vector);}
for (int i=0; i< in->names->rowct; i++)
if (i< out->names->rowct) {Asprintf(out->names->row+i, "%s", in->names->row[i]);}
else apop_name_add(out->names, in->names->row[i], 'r');
for (int i=0; i< in->names->colct; i++)
if (i< out->names->colct) {Asprintf(out->names->col+i, "%s", in->names->col[i]);}
else apop_name_add(out->names, in->names->col[i], 'c');
for (int i=0; i< in->names->textct; i++)
if (i< out->names->textct) {Asprintf(out->names->text+i, "%s", in->names->text[i]);}
else apop_name_add(out->names, in->names->text[i], 't');
}
out->textsize[0] = in->textsize[0];
out->textsize[1] = in->textsize[1];
if (in->textsize[0] && in->textsize[1]){
Apop_stopif(out->textsize[0] < in->textsize[0] || out->textsize[1] < in->textsize[1],
out->error='d'; return,
1, "I am trying to copy a grid of (%zu, %zu) text elements into a grid of (%zu, %zu), "
"and that won't work. Please use apop_text_alloc to reallocate the right amount of data, "
"or use apop_data_copy for automatic allocation.",
in->textsize[0] , in->textsize[1] , out->textsize[0] , out->textsize[1]);
for (size_t i=0; i< in->textsize[0]; i++)
for(size_t j=0; j < in->textsize[1]; j ++)
if (in->text[i][j] == apop_nul_string)
apop_text_blank(out, i, j);
else apop_text_set(out, i, j, "%s", in->text[i][j]);
}
if (in->more && out->more) apop_data_memcpy(out->more, in->more);
}
/** Copy one \ref apop_data structure to another. That is, all data is duplicated.
Basically a front-end for \ref apop_data_memcpy for those who prefer this sort of syntax.
If the data set has a \c more pointer, that will be followed and subsequent pages copied as well.
\param in the input data
\return a structure that this function will allocate and fill. If input is NULL, then this will be NULL.
\exception out.error='a' Allocation error.
\exception out.error='c' Cyclic link: <tt>D->more == D</tt> (may be later in the chain, e.g., <tt>D->more->more = D->more</tt>) You'll have only a partial copy.
\exception out.error='d' Dimension error; should never happen.
\exception out.error='p' Missing part error; should never happen.
\li If the input data set has an error, then I will copy it anyway, including the
error flag (which might be overwritten). I print a warning if the verbosity level
is <tt>>=1</tt>.
*/
apop_data *apop_data_copy(const apop_data *in){
if (!in) return NULL;
apop_data *out = apop_data_alloc();
Apop_stopif(out->error, return out, 0, "Allocation error.");
if (in->error){
Apop_notify(1, "the data set to be copied has an error flag of %c. Copying it.", in->error);
out->error = in->error;
}
if (in->more){
Apop_stopif(in == in->more, out->error='c'; return out,
0, "the ->more element of this data set equals the "
"data set itself. This is not healthy. Made a partial copy and set out.error='c'.");
out->more = apop_data_copy(in->more);
Apop_stopif(out->more->error, out->error=out->more->error; return out,
0, "propagating an error in the ->more element to the parent apop_data set. Only a partial copy made.");
}
if (in->vector){
out->vector = gsl_vector_alloc(in->vector->size);
Apop_stopif(!out->vector, out->error='a'; return out, 0, "Allocation error on vector of size %zu.", in->vector->size);
}
if (in->matrix){
out->matrix = gsl_matrix_alloc(in->matrix->size1, in->matrix->size2);
Apop_stopif(!out->matrix, out->error='a'; return out, 0, "Allocation error on matrix "
"of size %zu X %zu.", in->matrix->size1, in->matrix->size2);
}
if (in->weights){
out->weights = gsl_vector_alloc(in->weights->size);
Apop_stopif(!out->weights, out->error='a'; return out, 0, "Allocation error on weights vector of size %zu.", in->weights->size);
}
if (in->textsize[0] && in->textsize[1]){
apop_text_alloc(out, in->textsize[0], in->textsize[1]);
Apop_stopif(out->error, return out, 0, "Allocation error on text grid of size %zu X %zu.", in->textsize[0], in->textsize[1]);
}
apop_data_memcpy(out, in);
return out;
}
/** Put the first data set either on top of or to the left of the second data set.
For the opposite operation, see \ref apop_data_split.
\param m1 the upper/rightmost data set (default = \c NULL)
\param m2 the second data set (default = \c NULL)
\param posn If 'r', stack rows of m1 above rows of m2<br>
if 'c', stack columns of m1 to left of m2's<br>
(default = 'r')
\param inplace If \c 'y', use \ref apop_matrix_realloc and \ref apop_vector_realloc to modify \c m1 in place. Otherwise, allocate a new \ref apop_data set, leaving \c m1 undisturbed. (default='n')
\return The stacked data, either in a new \ref apop_data set or \c m1
\exception out->error=='a' Allocation error.
\exception out->error=='d' Dimension error; couldn't make a complete copy.
\li The function returns a new data set, meaning that until you apop_data_free()
the original data sets, you will be taking up twice as much memory.
\li If m1 or m2 are \c NULL, returns a copy of the other element, and if
both are \c NULL, returns \c NULL. If \c m2 is \c NULL and \c inplace is \c
'y', returns the original \c m1 pointer unmodified.
\li Text is handled as you'd expect: If 'r', one set of text is stacked on top of the
other [number of columns must match]; if 'c', one set of text is set next to the other
[number of rows must match].
\li \c more is ignored.
\li If stacking rows on rows, the output vector is the input
vectors stacked accordingly. If stacking columns by columns, the output
vector is just a copy of the vector of \c m1 and <tt>m2->vector</tt> doesn't appear in the
output at all.
\li The same rules for dealing with the vector(s) hold for the vector(s) of weights.
\li Names are a copy of the names for \c m1, with the names for \c m2 appended to the
row or column list, as appropriate.
\li This function uses the \ref designated syntax for inputs.
*/
#ifdef APOP_NO_VARIADIC
apop_data * apop_data_stack(apop_data *m1, apop_data * m2, char posn, char inplace){
#else
apop_varad_head(apop_data *, apop_data_stack){
apop_data * apop_varad_var(m1, NULL)
apop_data * apop_varad_var(m2, NULL)
char apop_varad_var(posn, 'r')
Apop_stopif(!(posn == 'r' || posn == 'c'), return NULL, 0, "Valid positions are 'r' or 'c'"
" you gave me '%c'. Returning NULL.", posn);
char apop_varad_var(inplace, 'n')
inplace = (inplace == 'y' || inplace == 1 || inplace == 'Y') ? 1 : 0;
return apop_data_stack_base(m1, m2, posn, inplace);
}
apop_data * apop_data_stack_base(apop_data *m1, apop_data * m2, char posn, char inplace){
#endif
if (!m1) return apop_data_copy(m2);
if (!m2) return inplace ? m1 : apop_data_copy(m1);
apop_data *out = NULL;
if (inplace)
out = m1;
else {
apop_data *m = m1->more; //not following the more pointer.
m1->more =NULL;
out = apop_data_copy(m1);
Apop_stopif(out->error, return out, 0, "initial copy failed; leaving.");
m1->more = m;
}
Get_vmsizes(m1); //original sizes of vsize, msize1, msize2.
if (m2->names && !out->names) out->names = apop_name_alloc();
if (posn == 'c'){
if (m2->vector && out->vector){
gsl_matrix_view mview = gsl_matrix_view_vector(m2->vector, m2->vector->size, 1);
out->matrix = apop_matrix_stack(out->matrix, &mview.matrix, posn, .inplace='y');
apop_name_stack(out->names, m2->names, 'c', 'v');
if (m2->names && !m2->names->vector && m2->names->colct) apop_name_add(out->names, "v", 'c');
}
if (m2->vector && !out->vector) {
out->vector= apop_vector_copy(m2->vector);
if (m2->names->vector) apop_name_add(out->names, m2->names->vector, 'v');
}
}
out->matrix = apop_matrix_stack(out->matrix, m2->matrix, posn, .inplace='y');
if (posn == 'r'){
out->vector = apop_vector_stack(out->vector, m2->vector, .inplace='y');
out->weights = apop_vector_stack(out->weights, m2->weights, .inplace='y');
}
if (m2->text){ //we've already copied m1->text, if any, so if m2->text is NULL, we're done.
if (posn=='r'){
Apop_stopif(out->text && m2->textsize[1]!=out->textsize[1],
out->error='d'; return out, 0,
"The first data set has %zu columns of text and the second has %zu columns. "
"I can't stack that.", out->textsize[1], m2->textsize[1]);
int basetextsize = out->textsize[0];
apop_text_alloc(out, basetextsize+m2->textsize[0], m2->textsize[1]);
Apop_stopif(out->error, return out, 0, "Allocation error.");
for(int i=0; i< m2->textsize[0]; i++)
for(int j=0; j< m2->textsize[1]; j++)
if (m2->text[i][j] == apop_nul_string)
apop_text_blank(out, i+basetextsize, j);
else apop_text_set(out, i+basetextsize, j, "%s", m2->text[i][j]);
} else {
Apop_stopif(out->text && m2->textsize[0]!=out->textsize[0],
out->error='d'; return out, 0,
"The first data set has %zu rows of text and the second has %zu rows. "
"I can't stack that.", out->textsize[0], m2->textsize[0]);
int basetextsize = out->textsize[1];
apop_text_alloc(out, m2->textsize[0], basetextsize+m2->textsize[1]);
Apop_stopif(out->error, out->error='a'; return out, 0, "Allocation error.");
for(int i=0; i< m2->textsize[0]; i++)
for(int j=0; j< m2->textsize[1]; j++)
if (m2->text[i][j] == apop_nul_string)
apop_text_blank(out, i, j+basetextsize);
else apop_text_set(out, i, j+basetextsize, "%s", m2->text[i][j]);
apop_name_stack(out->names, m2->names, 't');
}
}
if ((posn=='r' && m2->names && m2->names->rowct) || (posn=='c' && m2->names && m2->names->colct)){
int min = posn =='r' ? m1->names->rowct : m1->names->colct;
int max = posn =='r' ? GSL_MAX(vsize, msize1) : msize2;
for (int k = min; k < max; k++) //pad so the name stacking is aligned (if needed)
apop_name_add(out->names, "", posn);
apop_name_stack(out->names, m2->names, posn);
}
return out;
}
/** Split one input \ref apop_data structure into two.
For the opposite operation, see \ref apop_data_stack.
\param in The \ref apop_data structure to split
\param splitpoint The index of what will be the first row/column of the second data set.
E.g., if this is -1 and \c r_or_c=='c', then the whole data set will be in the second
data set; if this is the length of the matrix then the whole data set will be in the
first data set. Another way to put it is that for values between zero and the matrix's
size, \c splitpoint will equal the number of rows/columns in the first matrix.
\param r_or_c If this is 'r' or 'R', then put some rows in the first data set and some in the second; of 'c' or 'C', split columns into first and second data sets.
\return An array of two \ref apop_data sets. If one is empty then a
\c NULL pointer will be returned in that position. For example, for a data set of 50 rows, <tt>apop_data **out = apop_data_split(data, 100, 'r')</tt> sets <tt>out[0] = apop_data_copy(data)</tt> and <tt>out[1] = NULL</tt>.
\li When splitting at a row, the text is also split.
\li The \c more pointer is ignored.
\li The <tt>apop_data->vector</tt> is taken to be the -1st element of the matrix.
\li Weights will be preserved. If splitting by rows, then the top and bottom parts of the weights vector will be assigned to the top and bottom parts of the main data set. If splitting by columns, identical copies of the weights vector will be assigned to both parts.
\li Data is copied, so you may want to call <tt>apop_data_free(in)</tt> after this.
*/
apop_data ** apop_data_split(apop_data *in, int splitpoint, char r_or_c){
//A long, dull series of contingencies. Bonus: a reasonable use of goto.
apop_data **out = malloc(2*sizeof(apop_data *));
out[0] = out[1] = NULL;
Apop_stopif(!in, return out, 1, "input was NULL; output will be an array of two NULLs.");
gsl_vector v1, v2, w1, w2;
gsl_matrix m1, m2;
int set_v1 = 1, set_v2 = 1,
set_m1 = 1, set_m2 = 1,
set_w1 = 1, set_w2 = 1,
namev0 = 0, namev1 = 0,
namer0 = 0, namer1 = 0,
namec0 = 0, namec1 = 0,
namersplit = -1, namecsplit = -1;
if (r_or_c == 'r' || r_or_c == 'R') {
if (splitpoint <=0)
out[1] = apop_data_copy(in);
else if (in->matrix && splitpoint >= in->matrix->size1)
out[0] = apop_data_copy(in);
else {
namev0 =
namev1 =
namec0 =
namec1 = 1;
if (in->vector){
v1 = gsl_vector_subvector(in->vector, 0, splitpoint).vector;
v2 = gsl_vector_subvector(in->vector, splitpoint, in->vector->size - splitpoint).vector;
} else
set_v1 =
set_v2 = 0;
if (in->weights){
w1 = gsl_vector_subvector(in->weights, 0, splitpoint).vector;
w2 = gsl_vector_subvector(in->weights, splitpoint,
in->weights->size - splitpoint).vector;
} else
set_w1 =
set_w2 = 0;
if (in->matrix){
m1 = gsl_matrix_submatrix (in->matrix, 0, 0, splitpoint, in->matrix->size2).matrix;
m2 = gsl_matrix_submatrix (in->matrix, splitpoint, 0,
in->matrix->size1 - splitpoint, in->matrix->size2).matrix;
} else
set_m1 =
set_m2 = 0;
namersplit=splitpoint;
goto allocation;
}
} else if (r_or_c == 'c' || r_or_c == 'C') {
if (in->weights){
w1 = gsl_vector_subvector(in->weights, 0, in->weights->size).vector;
w2 = gsl_vector_subvector(in->weights, 0, in->weights->size).vector;
} else
set_w1 =
set_w2 = 0;
namer0 = 1;
namer1 = 1;
if (splitpoint <= -1)
out[1] = apop_data_copy(in);
else if (in->matrix && splitpoint >= in->matrix->size2)
out[0] = apop_data_copy(in);
else if (splitpoint == 0){
if (in->vector){
v1 = gsl_vector_subvector(in->vector, 0, in->vector->size).vector;
namev0 = 1;
} else
set_v1 = 0;
set_v2 = 0;
set_m1 = 0;
if (in->matrix){
m2 = gsl_matrix_submatrix (in->matrix, 0, 0,
in->matrix->size1, in->matrix->size2).matrix;
namec1 = 1;
} else
set_m2 = 0;
goto allocation;
} else if (splitpoint > 0 && in->matrix && splitpoint < in->matrix->size2){
if (in->vector){
v1 = gsl_vector_subvector(in->vector, 0, in->vector->size).vector;
namev0 = 1;
} else
set_v1 = 0;
set_v2 = 0;
if (in->matrix){
m1 = gsl_matrix_submatrix (in->matrix, 0, 0, in->matrix->size1, splitpoint).matrix;
m2 = gsl_matrix_submatrix (in->matrix, 0, splitpoint,
in->matrix->size1, in->matrix->size2-splitpoint).matrix;
namecsplit = splitpoint;
} else
set_m1 =
set_m2 = 0;
goto allocation;
} else { //splitpoint >= in->matrix->size2
if (in->vector){
v1 = gsl_vector_subvector(in->vector, 0, in->vector->size).vector;
namev0 = 1;
} else
set_v1 = 0;
set_v2 = 0;
if (in->matrix){
m1 = gsl_matrix_submatrix (in->matrix, 0, 0,
in->matrix->size1, in->matrix->size2).matrix;
namec0 = 1;
}
else set_m1 = 0;
set_m2 = 0;
goto allocation;
}
} else Apop_notify(0, "Please set r_or_c == 'r' or == 'c'. Returning two NULLs.");
return out;
allocation:
out[0] = apop_data_alloc();
out[1] = apop_data_alloc();
if (set_v1) out[0]->vector = apop_vector_copy(&v1);
if (set_v2) out[1]->vector = apop_vector_copy(&v2);
if (set_m1) out[0]->matrix = apop_matrix_copy(&m1);
if (set_m2) out[1]->matrix = apop_matrix_copy(&m2);
if (set_w1) out[0]->weights = apop_vector_copy(&w1);
if (set_w2) out[1]->weights = apop_vector_copy(&w2);
if (namev0 && out[0]) apop_name_stack(out[0]->names, in->names, 'v');
if (namev1 && out[1]) apop_name_stack(out[1]->names, in->names, 'v');
if (namersplit >=0)
for (int k=0; k< in->names->rowct; k++){
int which = (k >= namersplit);
assert(out[which]);
apop_name_add(out[which]->names, in->names->row[k], 'r');
}
else {
if (namer0 && out[0]) apop_name_stack(out[0]->names, in->names, 'r');
if (namer1 && out[1]) apop_name_stack(out[1]->names, in->names, 'r');
}
if (namecsplit >=0)
for (int k=0; k< in->names->colct; k++){
int which = (k >= namecsplit);
assert(out[which]);
apop_name_add(out[which]->names, in->names->col[k], 'c');
}
else {
if (namec0 && out[0]) apop_name_stack(out[0]->names, in->names, 'c');
if (namec1 && out[1]) apop_name_stack(out[1]->names, in->names, 'c');
}
//finally, the text [split by rows only]
if (r_or_c=='r' && in->textsize[0] && in->textsize[1]){
apop_name_stack(out[1]->names, in->names, 't');
apop_text_alloc(out[0], splitpoint, in->textsize[1]);
Apop_stopif(out[0]->error, return out, 0, "Allocation error.");
if (in->textsize[0] > splitpoint){
apop_name_stack(out[0]->names, in->names, 't');
apop_text_alloc(out[1], in->textsize[0]-splitpoint, in->textsize[1]);
Apop_stopif(out[1]->error, return out, 0, "Allocation error.");
}
for (int i=0; i< in->textsize[0]; i++)
for (int j=0; j< in->textsize[1]; j++){
int whichtext = (i >= splitpoint);
int row = whichtext ? i - splitpoint : i;
Asprintf(&(out[whichtext]->text[row][j]), "%s", in->text[i][j]);
}
}
return out;
}
/** Remove the columns set to one in the \c drop vector.
\param n the \ref apop_name structure to be pared down
\param drop a vector with n->colct elements, mostly zero, with a one marking those columns to be removed.
\see \ref apop_data_prune_columns
*/
static void apop_name_rm_columns(apop_name *n, int *drop){
apop_name *newname = apop_name_alloc();
size_t initial_colct = n->colct;
for (size_t i=0; i< initial_colct; i++){
if (drop[i]==0) apop_name_add(newname, n->col[i],'c');
else n->colct--;
free(n->col[i]);
}
free(n->col);
n->col = newname->col;
//we need to free the newname struct, but leave the column intact.
newname->col = NULL;
newname->colct = 0;
apop_name_free(newname);
}
static gsl_matrix *apop_matrix_rm_columns(gsl_matrix *in, int *drop){
int ct = 0, //how many columns will not be dropped?
j = 0;
for (size_t i=0; i < in->size2; i++)
if (drop[i]==0)
ct++;
if (ct == in->size2) return apop_matrix_copy(in);
if (ct == 0) return NULL;
gsl_matrix *out = gsl_matrix_alloc(in->size1, ct);
for (size_t i=0; i < in->size2; i++){
if (drop[i]==0){
gsl_vector *v = Apop_cv(&(apop_data){.matrix=in}, i);
gsl_matrix_set_col(out, j, v);
j ++;
}
}
return out;
}
/** Remove the columns of the \ref apop_data set corresponding to a nonzero value in the \c drop vector.
\li The returned data structure looks like it was modified in place, but the data
matrix and the names are duplicated before being pared down, so if your data is taking
up more than half of your memory, this may not work.
\param d The \ref apop_data structure to be pared down.
\param drop An array of ints. If use[7]==1, then column seven will be cut from the
output. A reminder: <tt>calloc(in->size2 , sizeof(int))</tt> will fill your array with zeros on allocation, and
<tt>memset(use, 1, in->size2 * sizeof(int))</tt> will
quickly fill an array of ints with nonzero values.
\ref apop_data_rm_rows
*/
void apop_data_rm_columns(apop_data *d, int *drop){
gsl_matrix *freeme = d->matrix;
d->matrix = apop_matrix_rm_columns(d->matrix, drop);
gsl_matrix_free(freeme);
apop_name_rm_columns(d->names, drop);
}
/** \def apop_data_prune_columns(in, ...)
Keep only the columns of a data set that you name.
\param in The data set to prune.
\param ... A list of names to retain (i.e. the columns that shouldn't be pruned
out). For example, if you have run \ref apop_data_summarize, you have columns for several
statistics, but may care about only one or two; see the example.
For example:
\include test_pruning.c
\li I use a case-insensitive search to find your column.
\li If your name multiple columns, I'll only give you the first.
\li If I can't find a column matching one of your strings, I throw an error to the screen and continue.
\li This is a macro calling \ref apop_data_prune_columns_base. It packages your list of
columns into a list of strings, adds a \c NULL string at the end, and calls that function.
\hideinitializer */
/** Keep only the columns of a data set that you name.
This is the function called internally by the \ref apop_data_prune_columns macro. In
most cases, you'll want to use that macro. An example of the two uses demonstrating the
difference:
\code
apop_data_prune_columns(d, "mean", "median");
char *list[] = {"mean", "median", NULL};
apop_data_prune_columns_base(d, list);
\endcode
\param d The data set to prune.
\param colnames A NULL-terminated list of names to retain.
\return A pointer to the input data set, now pruned.
\see apop_data_rm_columns
*/
apop_data* apop_data_prune_columns_base(apop_data *d, char **colnames){
/* In types.h, you'll find an alias that takes the input, wraps it in the cruft that is
C's compound literal syntax, and appends a final "" to the list of strings. Here, I
find each element of the list, using that "" as a stopper, and then call apop_data_rm_columns.*/
Apop_stopif(!d, return NULL, 1, "You're asking me to prune a NULL data set; returning.");
Apop_stopif(!d->matrix, return d, 1, "You're asking me to prune a data set with NULL matrix; returning.");
int rm_list[d->names->colct];
int keep_count = 0;
char **name_step = colnames;
//to throw errors for typos (and slight efficiency gains), I need an array of whether
//each input colname has been used.
while (*name_step++)
keep_count++;
int used_field[keep_count];
memset(used_field, 0, keep_count*sizeof(int));
for (int i=0; i< d->names->colct; i++){
int keep = 0;
for (int j=0; j<keep_count; j++)
if (!used_field[j] && !strcasecmp(d->names->col[i], colnames[j])){
keep ++;
used_field[j]++;
break;
}
rm_list[i] = !keep;
}
apop_data_rm_columns(d, rm_list);
for (int j=0; j<keep_count; j++)
Apop_stopif(!used_field[j], , 1, "You asked me to keep column \"%s\" but I couldn't find a match for it. Typo?", colnames[j]);
return d;
}
/** Get a pointer to an element of an \ref apop_data set.
\li If a \c NULL vector or matrix (as the case may be), or the row/column you requested
is outside bounds, return \c NULL.
\li See \ref data_set_get "the set/get page" for details.
\param data The data set. Must not be \c NULL.
\param row The row number of the desired element. If <tt>rowname==NULL</tt>, default is zero.
\param col The column number of the desired element. -1 indicates the vector. If <tt>colname==NULL</tt>, default is zero.
\param rowname The row name of the desired element. If <tt>NULL</tt>, use the row number.
\param colname The column name of the desired element. If <tt>NULL</tt>, use the column number.
\param page The case-insensitive name of the page on which the element is found. If \c NULL, use first page.
\return A pointer to the element.
*/
#ifdef APOP_NO_VARIADIC
double * apop_data_ptr(apop_data *data, int row, int col, const char *rowname, const char *colname, const char *page){
#else
apop_varad_head(double *, apop_data_ptr){
apop_data * apop_varad_var(data, NULL);
Apop_stopif(!data, return NULL, 0, "You sent me a NULL data set. Returning NULL pointer.");
int apop_varad_var(row, 0);
int apop_varad_var(col, 0);
const char * apop_varad_var(rowname, NULL);
const char * apop_varad_var(colname, NULL);
const char * apop_varad_var(page, NULL);
if (page){
data = apop_data_get_page(data, page);
Apop_stopif(!data, return NULL, 1, "I couldn't find a page with label '%s'. Returning NULL.", page);
};
if (rowname){
row = apop_name_find(data->names, rowname, 'r');
Apop_stopif(row == -2, return NULL, 1, "Couldn't find '%s' amongst the row names.", rowname);
}
if (colname){
col = apop_name_find(data->names, colname, 'c');
Apop_stopif(col == -2, return NULL, 1, "Couldn't find '%s' amongst the column names.", colname);
}
return apop_data_ptr_base(data, row, col, rowname, colname, page);
}
double * apop_data_ptr_base(apop_data *data, int row, int col, const char *rowname, const char *colname, const char *page){
#endif
if (col == -1 || (col == 0 && !data->matrix && data->vector)){
Apop_stopif(!data->vector, return NULL, 1, "You asked for the vector element (col=-1) but it is NULL. Returning NULL.");
return gsl_vector_ptr(data->vector, row);
} else {
Apop_stopif(!data->matrix, return NULL, 1, "You asked for the matrix element (%i, %i) but the matrix is NULL Returning NULL..", row, col);
return gsl_matrix_ptr(data->matrix, row,col);
}
return NULL;//the main function is blank.
}
/** Returns the data element at the given point.
In case of error (probably that you asked for a data point out of bounds), returns \c NAN.
See \ref data_set_get "the set/get page" for details and examples.
\param data The data set. Must not be \c NULL.
\param row The row number of the desired element. If <tt>rowname==NULL</tt>, default is zero.
\param col The column number of the desired element. -1 indicates the vector.
If <tt>colname==NULL</tt>, default is zero if the <tt>->matrix</tt> element is not \c
NULL and -1 if the <tt>->matrix</tt> element is \c NULL and the <tt>->vector</tt> element is not.
\param rowname The row name of the desired element. If <tt>NULL</tt>, use the row number.
\param colname The column name of the desired element. If <tt>NULL</tt>, use the column number.
\param page The case-insensitive name of the page on which the element is found. If \c NULL, use first page.
\return The value at the given location. */
#ifdef APOP_NO_VARIADIC
double apop_data_get(const apop_data *data, size_t row, int col, const char *rowname, const char *colname, const char *page){
#else
apop_varad_head(double, apop_data_get){
const apop_data * apop_varad_var(data, NULL);
Apop_stopif(!data, return NAN, 0, "You sent me a NULL data set. Returning NaN.");
size_t apop_varad_var(row, 0);
int apop_varad_var(col, 0);
const char * apop_varad_var(rowname, NULL);
const char * apop_varad_var(colname, NULL);
const char * apop_varad_var(page, NULL);
if (page){
data = apop_data_get_page(data, page);
Apop_stopif(!data, return NAN, 1, "I couldn't find a page with label '%s'. Returning NaN.", page);
};
if (rowname){
row = apop_name_find(data->names, rowname, 'r');
Apop_stopif(row == -2, return NAN, 1, "Couldn't find '%s' amongst the row names. Returning NaN.", rowname);
}
if (colname){
col = apop_name_find(data->names, colname, 'c');
Apop_stopif(col == -2, return NAN, 1, "Couldn't find '%s' amongst the column names. Returning NaN.", colname);
}
return apop_data_get_base(data, row, col, rowname, colname, page);
}
double apop_data_get_base(const apop_data *data, size_t row, int col, const char *rowname, const char *colname, const char *page){
#endif
if (col==-1 || (col == 0 && !data->matrix && data->vector)){
Apop_stopif(!data->vector, return NAN, 1, "You asked for the vector element (col=-1) but it is NULL.");
return gsl_vector_get(data->vector, row);
} else {
Apop_stopif(!data->matrix, return NAN, 1, "You asked for the matrix element (%zu, %i) but the matrix is NULL.", row, col);
return gsl_matrix_get(data->matrix, row, col);
}
}
/* The only hint the GSL gives that something failed is that the error-handler is called.
The error handling function won't let you set an output to the function. So all we
can do is use a global variable.
*/
static threadlocal int error_for_set; //see apop_internal.h
void apop_gsl_error_for_set(const char *reason, const char *file, int line, int gsl_errno){
Apop_notify(1, "%s: %s", file, reason);
Apop_maybe_abort(1);
error_for_set = -1;
}
/** Set a data element.
See \ref data_set_get "the set/get page" for details and examples.
\return 0=OK, -1=error: couldn't find row/column name, or you asked for a location outside the vector/matrix bounds.
\li The error codes for out-of-bounds errors are thread-safe iff you are have a
C11-compliant compiler (thanks to the \c _Thread_local keyword) or a version of GCC with the \c __thread
extension enabled.
\li Set weights via <tt>gsl_vector_set(your_data->weights, row, val);</tt>.
\li Set text elements via \ref apop_text_set.
\param data The data set. Must not be \c NULL.
\param row The row number of the desired element. If <tt>rowname==NULL</tt>, default is zero.
\param col The column number of the desired element. -1 indicates the vector. If <tt>colname==NULL</tt>, default is zero.
\param rowname The row name of the desired element. If <tt>NULL</tt>, use the row number.
\param colname The column name of the desired element. If <tt>NULL</tt>, use the column number.
\param page The case-insensitive name of the page on which the element is found. If \c NULL, use first page.
\param val The value to give the point.
\li This function uses the \ref designated syntax for inputs.
*/
#ifdef APOP_NO_VARIADIC
int apop_data_set(apop_data *data, size_t row, int col, const double val, const char *colname, const char *rowname, const char *page){
#else
apop_varad_head(int, apop_data_set){
apop_data * apop_varad_var(data, NULL);
Apop_stopif(!data, return -1, 0, "You sent me a NULL data set.");
size_t apop_varad_var(row, 0);
int apop_varad_var(col, 0);
const double apop_varad_var(val, 0);
const char * apop_varad_var(rowname, NULL);
const char * apop_varad_var(colname, NULL);
const char * apop_varad_var(page, NULL);
if (page){
data = apop_data_get_page((apop_data*)data, page);
Apop_stopif(!data, return -1, 1, "I couldn't find a page with label '%s'. Making no changes.", page);
}
if (rowname){
row = apop_name_find(data->names, rowname, 'r');
Apop_stopif(row == -2, return -1, 1, "Couldn't find '%s' amongst the column names. Making no changes.", rowname);
}
if (colname){
col = apop_name_find(data->names, colname, 'c');
Apop_stopif(col == -2, return -1, 1, "Couldn't find '%s' amongst the column names. Making no changes.", colname);
}
return apop_data_set_base(data, row, col, val, colname, rowname, page);
}
int apop_data_set_base(apop_data *data, size_t row, int col, const double val, const char *colname, const char *rowname, const char *page){
#endif
Set_gsl_handler
if (col==-1 || (col == 0 && !data->matrix && data->vector)){
Apop_stopif(!data->vector, return -1, 1, "You're trying to set a vector element (row=-1) but the vector is NULL.");
gsl_vector_set(data->vector, row, val);
} else {
Apop_stopif(!data->matrix, return -1, 1, "You're trying to set the matrix element (%zu, %i) but the matrix is NULL.", row, col);
gsl_matrix_set(data->matrix, row, col, val);
}
Unset_gsl_handler
return error_for_set;
}
/** A convenience function to add a named element to a data set. Many of Apophenia's
testing procedures use this to easily produce a column of named parameters. It is public
as a convenience.
\param d The \ref apop_data structure. Must not be \c NULL, but may be blank (as per
allocation via \ref apop_data_alloc <tt>( )</tt> ).
\param name The name to add
\param val the value to add to the set.
\li I use the position of the last non-empty row name to know where to put the value. If
there are two names in the data set, then I will put the new name in
the third name slot and the data in the third slot in the vector. If
you use this function from start to finish in building your list, then you'll be fine.
\li If the vector is too short (or \c NULL), I will call \ref apop_vector_realloc internally to make space.
\li This fits well with the defaults for \ref apop_data_get. An example:
\code
apop_data *list = apop_data_alloc();
apop_data_add_named_elmt(list, "height", 165);
apop_data_add_named_elmt(list, "weight", 60);
double height = apop_data_get(list, .rowname="height");
//or
#define Lookup(dataset, key) apop_data_get(dataset, .rowname=#key)
height = Lookup(list, height);
\endcode
*/
void apop_data_add_named_elmt(apop_data *d, char *name, double val){
Apop_stopif(!d, return, 0, "You sent me a NULL apop_data set. "
"Maybe allocate with apop_data_alloc() to start.");
apop_name_add(d->names, name, 'r');
if (!d->vector) d->vector = gsl_vector_alloc(1);
if (d->vector->size < d->names->rowct)
apop_vector_realloc(d->vector, d->names->rowct);
gsl_vector_set(d->vector, d->names->rowct-1, val);
}
//See apop_data_add_names in types.h.
void apop_data_add_names_base(apop_data *d, const char type, char const ** names){
if (!d->names) d->names = apop_name_alloc();
for(char const** name = names; *name !=NULL; name++)
apop_name_add(d->names, *name, type);
}
/** Add a string to the text element of an \ref apop_data set. If you
send me a \c NULL string, I will write the value of <tt>apop_opts.nan_string</tt> in the given slot.
If there is already something in that slot, that string is freed, preventing memory leaks.
\param in The \ref apop_data set, that already has an allocated \c text element.
\param row The row
\param col The column
\param fmt The text to write.
\param ... You can use a printf-style fmt and follow it with the usual variables to fill in.
\return 0=OK, -1=error (probably out-of-bounds)
\li UTF-8 or ASCII text is correctly handled.
\li Apophenia follows a general rule of not reallocating behind your back: if
your text matrix is currently of size (3,3) and you try to put an item in slot (4,4),
then I display an error rather than reallocating the text matrix.
\li The string added is a copy (via <tt>asprintf</tt>), not a pointer to the input(s).
\li If there had been a string at the grid point you are writing to,
the old one is freed to prevent leaks. Remember this if you had other pointers aliasing
that string.
\li If an element is \c NULL, write <tt>apop_opts.nan_string</tt> at that point. You
may prefer to use <tt>""</tt> to express a blank.
\li \ref apop_text_alloc will reallocate to a new size if you need. For example,
this code will fill the diagonals of the text array with a message, resizing as it goes:
\code
apop_data *list = (something already allocated.);
for (int n=0; n < 10; n++){
apop_text_alloc(list, n+1, n+1);
apop_text_set(list, n, n, "This is cell (%i, %i)", n, n);
}
\endcode
*/
int apop_text_set(apop_data *in, const size_t row, const size_t col, const char *fmt, ...){
Apop_stopif(!in, return -1, 0, "You asked me to write text to a NULL data set.");
Apop_stopif((in->textsize[0] < (int)row+1) || (in->textsize[1] < (int)col+1), return -1, 0, "You asked me to put the text "
" '%s' at position (%zu, %zu), but the text array has size (%zu, %zu)\n",
fmt, row, col, in->textsize[0], in->textsize[1]);
if (in->text[row][col] != apop_nul_string) free(in->text[row][col]);
if (!fmt){
Asprintf(&(in->text[row][col]), "%s", apop_opts.nan_string);
return 0;
}
va_list argp;
va_start(argp, fmt);
Apop_stopif(vasprintf(&(in->text[row][col]), fmt, argp)==-1, , 0, "Trouble writing to a string.");
va_end(argp);
return 0;
}
/** This allocates or resizes the \c text element of an \ref apop_data set.
If the \c text element already exists, then this is effectively a \c realloc function,
reshaping to the size you specify.
\param in An \ref apop_data set. It's OK to send in \c NULL, in which case an apop_data set with \c NULL \c matrix and \c vector elements is returned.
\param row the number of rows of text.
\param col the number of columns of text.
\return A pointer to the relevant \ref apop_data set. If the input was not \c NULL, then this is a repeat of the input pointer.
\exception out->error=='a' Allocation error.
*/
apop_data * apop_text_alloc(apop_data *in, const size_t row, const size_t col){
Apop_stopif((!row && col) || (!col && row), return in, 1, "Not allocating a %zu x %zu text grid. "
"Returning the input apop_data set.", row, col);
if (!in) in = apop_data_alloc();
if (!in->text){
if (row){
in->text = malloc(sizeof(char**) * row);
Apop_stopif(!in->text, in->error='a'; return in,
0, "malloc failed setting up %zu rows. Probably out of memory.", row);
}
if (row && col)
for (size_t i=0; i< row; i++){
in->text[i] = malloc(sizeof(char*) * col);
Apop_stopif(!in->text[i], in->error='a'; return in,
0, "malloc failed setting up row %zu (with %zu columns). Probably out of memory.", i, col);
for (size_t j=0; j< col; j++)
in->text[i][j] = apop_nul_string;
}
} else { //realloc
size_t rows_now = in->textsize[0];
size_t cols_now = in->textsize[1];
if (rows_now > row){
for (int i=row; i < rows_now; i++){
for (int j=0; j < cols_now; j++)
if (in->text[i][j] != apop_nul_string)
free(in->text[i][j]);
free(in->text[i]);
}
in->text = realloc(in->text, sizeof(char**)*row);
Apop_stopif(row && !in->text, in->error='a'; return in,
0, "realloc failed shrinking down to %zu rows from %zu rows. "
"There may be actual bugs eating your computer.", row, rows_now);
}
if (rows_now < row){
in->text = realloc(in->text, sizeof(char**)*row);
Apop_stopif(!in->text, in->error='a'; return in,
0, "realloc failed setting up %zu rows. Probably out of memory.", row);
for (size_t i=rows_now; i < row; i++){
in->text[i] = malloc(sizeof(char*) * col);
Apop_stopif(!in->text[i], in->error='a'; return in,
0, "malloc failed setting up row %zu (with %zu columns). Probably out of memory.", i, col);
for (int j=0; j < cols_now; j++)
in->text[i][j] = apop_nul_string;
}
}
if (cols_now > col)
for (int i=0; i < row; i++)
for (int j=col; j < cols_now; j++)
if (in->text[i][j]!=apop_nul_string)
free(in->text[i][j]);
if (cols_now != col)
for (int i=0; i < row; i++){
in->text[i] = realloc(in->text[i], sizeof(char*)*col);
for (int j=cols_now; j < col; j++) //happens iff cols_now < col
in->text[i][j] = apop_nul_string;
}
}
in->textsize[0] = row;
in->textsize[1] = col;
return in;
}
/** Transpose the matrix and text elements of the input data set, including the row/column names.
The vector and weights elements of the input data set are completely ignored (but see
also \ref apop_vector_to_matrix, which can convert a vector to a 1 X N matrix.) If
copying, these other elements won't be present; if <tt>.inplace='y'</tt>, it is up to you to
handle these not-transposed elements correctly.
\param in The input \ref apop_data set. If \c NULL, I return \c NULL. (default: \c NULL)
\param transpose_text If \c 'y', then also transpose the text element. (default: \c 'y')
\param inplace If \c 'y', transpose the input in place; if \c 'n', produce a transposed
copy, leaving the original untouched. Due to how <tt>gsl_matrix_transpose_memcpy</tt>
works, a copy will still be made, then copied to the original location. (default: \c 'y')
\return If <tt>inplace=='n'</tt>, a newly alloced \ref apop_data set, with the
appropriately transposed matrix and/or text. The vector and weights elements will be
\c NULL. If <tt>transpose_text='n'</tt>, then the text element of the output set will
also be \c NULL.<br> if <tt>inplace=='y'</tt>, a pointer to the original data set,
with matrix and (if <tt>transpose_text='y'</tt>, text) transposed and vector and weights
left in place untouched.
\li Row names are written to column names of the output matrix, text, or both (whichever is not empty in the input).
\li If only the matrix or only the text have names, then the one set of names is written to the row names of the output.
\li If both matrix column names and text column names are present, text column names are lost.
\li if you have a \c gsl_matrix with no names or text, you may prefer to use \c gsl_matrix_transpose_memcpy.
\li This function uses the \ref designated syntax for inputs.
*/
#ifdef APOP_NO_VARIADIC
apop_data * apop_data_transpose(apop_data *in, char transpose_text, char inplace){
#else
apop_varad_head(apop_data *, apop_data_transpose){
apop_data * apop_varad_var(in, NULL);
Apop_stopif(!in, return NULL, 1, "Transposing a NULL data set; returning NULL.");
char apop_varad_var(transpose_text, 'y');
char apop_varad_var(inplace, 'y');
return apop_data_transpose_base(in, transpose_text, inplace);
}
apop_data * apop_data_transpose_base(apop_data *in, char transpose_text, char inplace){
#endif
Apop_stopif(!in->matrix && !*in->textsize, return apop_data_alloc(),
1, "input data set has neither matrix nor text elements; returning an empty data set.");
apop_data *out = (inplace=='y') ? in
: apop_data_alloc(0, in->matrix ? in->matrix->size2 : 0
, in->matrix ? in->matrix->size1 : 0);
if (inplace=='y'){
if (in->matrix) {
if (in->matrix->size1 == in->matrix->size2)
gsl_matrix_transpose(in->matrix);
else {
gsl_matrix *outm = gsl_matrix_alloc(in->matrix->size2, in->matrix->size1);
gsl_matrix_transpose_memcpy(outm, in->matrix);
gsl_matrix_free(in->matrix);
in->matrix = outm;
}
}
if (out->names){
char **tmp = out->names->col;
out->names->col = out->names->row;
out->names->row = tmp;
int tmpct = out->names->colct;
out->names->colct = out->names->rowct;
out->names->rowct = tmpct;
}
} else if (inplace!='y' && in->matrix){
if (in->matrix) gsl_matrix_transpose_memcpy(out->matrix, in->matrix);
apop_name_stack(out->names, in->names, 'r', 'c');
apop_name_stack(out->names, in->names, 'c', 'r');
}
if (transpose_text!='y' || in->textsize[0] == 0 || in->textsize[1] == 0) return out;
if (inplace=='y'){
size_t orows = in->textsize[0];
size_t ocols = in->textsize[1];
if (orows > ocols){ //extend the first ocols rows to their now-longer length
for (size_t i=0; i< ocols; i++){
in->text[i] = realloc(in->text[i], sizeof(char*)*orows);
Apop_stopif(!in->text[i], in->error='a'; return in,
0, "malloc failed setting up row %zu (with %zu columns). Probably out of memory.", i, orows);
for (int j=ocols; j < orows; j++)
in->text[i][j] = in->text[j][i] == apop_nul_string
? apop_nul_string
: strdup(in->text[j][i]);
}
}
if (ocols > orows){ //add rows.
in->text = realloc(in->text, sizeof(char**)*ocols);
Apop_stopif(!in->text, in->error='a'; return in,
0, "realloc failed setting up %zu rows. Probably out of memory.", ocols);
for (size_t i=orows; i < ocols; i++){
in->text[i] = malloc(sizeof(char*) * orows);
Apop_stopif(!in->text[i], in->error='a'; return in,
0, "malloc failed setting up row %zu (with %zu columns). Probably out of memory.", i, orows);
for (int j=0; j < orows; j++)
in->text[i][j] = in->text[j][i] == apop_nul_string
? apop_nul_string
: strdup(in->text[j][i]);
}
}
size_t squaresize = GSL_MIN(orows, ocols);
for (int i=0; i< squaresize; i++) //now do the no-need-to-extend square
for (int j=i+1; j< squaresize; j++){
char *tmp = in->text[i][j];
in->text[i][j] = in->text[j][i];
in->text[j][i] = tmp;
}
in->textsize[0] = ocols;
in->textsize[1] = orows;
} else {
apop_text_alloc(out, in->textsize[1], in->textsize[0]);
for (int r=0; r< in->textsize[0]; r++)
for (int c=0; c< in->textsize[1]; c++)
if (in->text[r][c] == apop_nul_string)
apop_text_blank(out, c, r);
else apop_text_set(out, c, r, in->text[r][c]);
}
if (in->names && in->names->textct && !in->names->colct)
apop_name_stack(out->names, in->names, 't', 'r');
return out;
}
/** This function will resize a \c gsl_matrix to a new height or width.
Data in the matrix will be retained. If the new height or width is smaller than the old, then data in the later rows/columns will be cropped away (in a non--memory-leaking manner). If the new height or width is larger than the old, then new cells will be filled with garbage; it is your responsibility to zero out or otherwise fill new rows/columns before use.
\li A large number of <tt>realloc</tt>s can take a noticeable amount of time. You
are encouraged to determine the size of your data beforehand and avoid writing \c for
loops that reallocate the matrix at every iteration.
\li The <tt>gsl_matrix</tt> is a versatile struct that can represent submatrices and
other cuts from parent data. Resizing a subset of a parent matrix makes no sense,
so return \c NULL and print a warning if asked to resize a view of a matrix.
\param m The already-allocated matrix to resize. If you give me \c NULL, this becomes equivalent to \c gsl_matrix_alloc
\param newheight, newwidth The height and width you'd like the matrix to be.
\return m, now resized
*/
gsl_matrix * apop_matrix_realloc(gsl_matrix *m, size_t newheight, size_t newwidth){
if (!m)
return (newheight && newwidth) ? gsl_matrix_alloc(newheight, newwidth) : NULL;
size_t i, oldoffset=0, newoffset=0, realloced = 0;
Apop_stopif(m->block->data!=m->data || !m->owner || m->tda != m->size2,
return NULL, 0, "I can't resize submatrices or other subviews.");
m->block->size = newheight * newwidth;
if (m->size2 > newwidth)
for (i=1; i< GSL_MIN(m->size1, newheight); i++){
oldoffset +=m->size2;
newoffset +=newwidth;
memmove(m->data+newoffset, m->data+oldoffset, sizeof(double)*newwidth);
}
else if (m->size2 < newwidth){
m->block->data = m->data = realloc(m->data, sizeof(double) * m->block->size);
realloced = 1;
int height = GSL_MIN(m->size1, newheight);
for (i= height-1; i > 0; i--){
newoffset +=newwidth;
memmove(m->data+(height * newwidth) - newoffset, m->data+i*m->size2, sizeof(double)*m->size2);
}
}
m->size1 = newheight;
m->tda =
m->size2 = newwidth;
if (!realloced)
m->block->data = m->data = realloc(m->data, sizeof(double) * m->block->size);
return m;
}
/** This function will resize a \c gsl_vector to a new length.
Data in the vector will be retained. If the new height is
smaller than the old, then data at the end of the vector will be
cropped away (in a non--memory-leaking manner). If the new height is larger than the old,
then new cells will be filled with garbage; it is your responsibility
to zero out or otherwise fill them before use.
\li A large number of <tt>realloc</tt>s can take a noticeable amount of time. You
are thus encouraged to make an effort to determine the size of your data and do one
allocation, rather than writing \c for loops that resize a vector at every increment.
\li The <tt>gsl_vector</tt> is a versatile struct that
can represent subvectors, matrix columns and other cuts from parent data.
Resizing a portion of a parent matrix makes no sense, so
return \c NULL and print an error if asked to resize a view.
\param v The already-allocated vector to resize. If you give me \c NULL, this is equivalent to \c gsl_vector_alloc
\param newheight The height you'd like the vector to be.
\return v, now resized
*/
gsl_vector * apop_vector_realloc(gsl_vector *v, size_t newheight){
if (!v) return newheight ? gsl_vector_alloc(newheight) : NULL;
Apop_stopif(v->block->data!=v->data || !v->owner || v->stride != 1,
return NULL, 0, "I can't resize subvectors or other views.");
v->block->size = newheight;
v->size = newheight;
v->block->data =
v->data = realloc(v->data, sizeof(double) * v->block->size);
return v;
}
/** It's good form to get a page from your data set by name, because you
may not know the order for the pages, and the stepping through makes
for dull code anyway (<tt>apop_data *page = dataset; while (page->more) page= page->more;</tt>).
\param data The \ref apop_data set to use. No default; if \c NULL,
gives a warning if <tt>apop_opts.verbose >=1</tt> and returns \c NULL.
\param title The name of the page to retrieve. Default=\c "<Info>", which
is the name of the page of additional estimation information returned
by estimation routines (log likelihood, status, AIC, BIC, confidence intervals, ...).
\param match If \c 'c', case-insensitive match (via \c strcasecmp); if \c 'e', exact match, if \c 'r' regular expression substring search (via \ref apop_regex). Default=\c 'c'.
\return The page whose title matches what you gave me. If I don't find a match, return \c NULL.
\li This function uses the \ref designated syntax for inputs.
*/
#ifdef APOP_NO_VARIADIC
apop_data * apop_data_get_page(const apop_data * data, const char *title, const char match){
#else
apop_varad_head(apop_data *, apop_data_get_page){
const apop_data * apop_varad_var(data, NULL);
Apop_stopif(!data, return NULL, 1, "You requested a page from a NULL data set. Returning NULL");
const char * apop_varad_var(title, "<Info>");
const char apop_varad_var(match, 'c');
Apop_stopif(match!='r' && match!='e' && match!='c', return NULL, 0,
"match type needs to be 'r', 'e', or 'c'; you supplied %c.", match);
return apop_data_get_page_base(data, title, match);
}
apop_data * apop_data_get_page_base(const apop_data * data, const char *title, const char match){
#endif
while (data && (!data->names || !data->names->title ||
(match=='c' && strcasecmp(data->names->title, title))
|| (match=='r' && !apop_regex(data->names->title, title))
|| (match=='e' && strcmp(data->names->title, title))
))
data = data->more;
return (apop_data *) data; //de-const.
}
/** Add a page to an \ref apop_data set. It gets a name so you can find it later.
\param dataset The input data set, to which a page will be added.
\param newpage The page to append
\param title The name of the new page.
\return The new page. I post a warning if I am appending or appending to a \c NULL data set and <tt>apop_opts.verbose >=1 </tt>.
\li See \ref pps for further notes.
*/
apop_data * apop_data_add_page(apop_data * dataset, apop_data *newpage, const char *title){
Apop_stopif(!newpage, return NULL, 1, "You are adding a NULL page to a data set. Doing nothing; returning NULL.");
if (!newpage->names) newpage->names = apop_name_alloc();
if (title && !(newpage->names->title == title)){//has title, but is not pointing to existing title
free(newpage->names->title);
Asprintf(&newpage->names->title, "%s", title);
}
Apop_stopif(!dataset, return newpage, 1, "You are adding a page to a NULL data set. Returning the new page as its own data set.");
while (dataset->more)
dataset = dataset->more;
dataset->more = newpage;
return newpage;
}
/** Remove the first page from an \ref apop_data set that matches a given name.
\param data The input data set, from which a page will be removed. No default.
If \c NULL, maybe print a warning (see below).
\param title The case-insensitive name of the page to remove. Default: \c "<Info>"
\param free_p If \c 'y', then \ref apop_data_free the page. Default: \c 'y'.
\return If not freed, a pointer to the \c apop_data page that I just pulled out. Thus,
you can use this to pull a single page from a data set. I set that page's \c more
pointer to \c NULL, to minimize any confusion about more-than-linear linked list
topologies. If <tt>free_p=='y'</tt> (the default) or the page is not found, return \c NULL.
\li I don't check the first page, so there's no concern that the head of your list of
pages will move. Again, the intent of the <tt>->more</tt> pointer in the \ref apop_data
set is not to fully implement a linked list, but primarily to allow you to staple auxiliary
information to a main data set.
\li If I don't find the page you want, I return NULL, and maybe print a warning; see below.
\li For the two above cases where a warning may be printed, if the page is to be
returned and <tt> apop_opts.verbose >= 1 </tt>, print a warning.
If the page is to be freed and <tt> apop_opts.verbose >= 2 </tt>, print a warning.
\li The remaining \c more pointers in the \ref apop_data set are adjusted accordingly.
*/
#ifdef APOP_NO_VARIADIC
apop_data* apop_data_rm_page(apop_data * data, const char *title, const char free_p){
#else
apop_varad_head(apop_data*, apop_data_rm_page){
const char *apop_varad_var(title, "<Info>");
const char apop_varad_var(free_p, 'y');
apop_data *apop_varad_var(data, NULL);
Apop_stopif(!data, return NULL, (free_p=='y'? 2: 1), "You are removing a "
"page from a NULL a data set. Doing nothing.");
return apop_data_rm_page_base(data, title, free_p);
}
apop_data* apop_data_rm_page_base(apop_data * data, const char *title, const char free_p){
#endif
while (data->more && strcasecmp(data->more->names->title, title))
data = data->more;
Apop_stopif(!data->more, return NULL, (free_p=='y'?2:1), "You asked me to "
"remove '%s' but I couldn't find a page matching that.", title);
if (data->more){
apop_data *tmp = data->more;
data->more = data->more->more;
tmp->more = NULL;
if (free_p=='y'){
free(tmp);
return NULL;
} //else:
return tmp;
} else return NULL;
}
typedef int (*apop_fn_ir)(apop_data*, void*);
/** Remove the rows set to one in the \c drop vector or for which the \c do_drop function returns one.
\param in the \ref apop_data structure to be pared down
\param drop a vector with as many elements as the max of the vector, matrix, or text
parts of \c in, with a one marking those rows to be removed.
\param do_drop A function that returns one for rows to drop and zero for rows to not drop. A sample function:
\code
int your_drop_function(apop_data *onerow, void *extra_param){
return gsl_isnan(apop_data_get(onerow)) ||
!strcmp(onerow->text[0][0], "Uninteresting data point");
}
\endcode
\ref apop_data_rm_rows will use \ref Apop_r to get a subview of the input data set
of height one, and send that subview to this function (and since arguments typically
default to zero, you don't have to write out things like \ref apop_data_get
<tt>(onerow, .row=0, .col=0)</tt>, which can help to keep things readable).
\param drop_parameter If your \c do_drop function requires additional input, put it here
and it will be passed through.
\return Returns a pointer to the input data set, now pruned.
\li If all the rows are to be removed, then you will wind up with the same \ref
apop_data set, with \c NULL \c vector, \c matrix, \c weight, and text. Therefore,
you may wish to check for \c NULL elements after use. I remove rownames, but leave
the other names, in case you want to add new data rows.
\li The typical use is to provide only a list or only a function. If both are \c
NULL, I return without doing anything, and print a warning if <tt>apop_opts.verbose
>=2</tt>. If you provide both, I will drop the row if either the vector has a one in
that row's position, or if the function returns a nonzero value.
\li This function uses the \ref designated syntax for inputs.
\see \ref apop_data_listwise_delete, \ref apop_data_rm_columns
*/
#ifdef APOP_NO_VARIADIC
apop_data* apop_data_rm_rows(apop_data *in, int *drop, apop_fn_ir do_drop, void *drop_parameter ){
#else
apop_varad_head(apop_data*, apop_data_rm_rows){
apop_data* apop_varad_var(in, NULL);
Apop_stopif(!in, return in, 2, "Input data set was NULL; no changes made.");
int* apop_varad_var(drop, NULL);
apop_fn_ir apop_varad_var(do_drop, NULL);
void* apop_varad_var(drop_parameter, NULL);
Apop_stopif(!drop && !do_drop, return in, 0, "You gave me neither a list of ints "
"indicating which rows to drop, nor a drop_fn I can use to test "
"each row. Returning with no changes made.");
return apop_data_rm_rows_base(in, drop, do_drop, drop_parameter);
}
apop_data* apop_data_rm_rows_base(apop_data *in, int *drop, apop_fn_ir do_drop, void *drop_parameter ){
#endif
//First, shift columns down to the nearest not-freed row.
int outlength = 0;
Get_vmsizes(in); //vsize, msize1, maxsize
for (int i=0 ; i < maxsize; i++){
int drop_row=0;
if (drop && drop[i]) drop_row = 1;
else if (do_drop){
drop_row = do_drop(Apop_r(in, i), drop_parameter);
}
if (!drop_row){
if (outlength != i) apop_data_memcpy(Apop_r(in, outlength), Apop_r(in, i));
outlength++;
}
}
if (!outlength){
gsl_vector_free(in->vector); in->vector = NULL;
gsl_vector_free(in->weights); in->weights = NULL;
gsl_matrix_free(in->matrix); in->matrix = NULL;
apop_text_alloc(in, 0, 0);
//leave colnames intact, remove rownames below.
}
//now trim excess memory:
if (in->vector) apop_vector_realloc(in->vector, GSL_MIN(in->vector->size, outlength));
if (in->weights) apop_vector_realloc(in->weights, GSL_MIN(in->weights->size, outlength));
if (in->matrix) apop_matrix_realloc(in->matrix, GSL_MIN(in->matrix->size1, outlength), in->matrix->size2);
if (in->text) apop_text_alloc(in, GSL_MIN(outlength, in->textsize[0]), in->textsize[1]);
if (in->names && in->names->rowct > outlength){
for (int k=outlength; k< in->names->rowct; k++)
free(in->names->row[k]);
in->names->rowct = outlength;
}
return in;
}
|