This repository has been archived by the owner on Jun 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
5570 lines (4316 loc) · 206 KB
/
index.html
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Shuffle/5.2.0/shuffle.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="https://rawgit.com/Vestride/Shuffle/master/docs/css/prism.css">
<link rel="stylesheet" href="https://rawgit.com/Vestride/Shuffle/master/docs/css/normalize.css">
<link rel="stylesheet" href="https://rawgit.com/Vestride/Shuffle/master/docs/css/style.css">
<link rel="stylesheet" href="https://rawgit.com/Vestride/Shuffle/master/docs/css/shuffle-styles.css">
<div class="container">
<div class="row">
<div class="col-12@sm">
<h2>Example<a href="#demo"></a></h2>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-4@sm col-3@md">
<div class="filters-group">
<label for="filters-search-input" class="filter-label">Search</label>
<input class="textfield filter__search js-shuffle-search" type="search" id="filters-search-input">
</div>
</div>
</div>
<div class="row">
<div class="col-12@sm filters-group-wrap">
<div class="filters-group">
<p class="filter-label">Filter</p>
<div class="btn-group filter-options">
<button class="btn btn--primary" data-group="default">default</button>
<button class="btn btn--primary" data-group="real">real</button>
</div>
</div>
<fieldset class="filters-group">
<legend class="filter-label">Sort</legend>
<div class="btn-group sort-options">
<label class="btn">
<input type="radio" name="sort-value" value="dom"> Default
</label>
<label class="btn">
<input type="radio" name="sort-value" value="stars"> By Stars
</label>
</div>
</fieldset>
</div>
</div>
</div>
<div class="container">
<div id="grid" class="row my-shuffle-container shuffle" style="height: 1220px; transition: height 250ms cubic-bezier(0.4, 0, 0.2, 1) 0s;">
<figure class="col-2@sm picture-item" data-stars="2" data-groups='["default"]' data-title="AIControl" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AIControl/index.html"> AIControl</a> <br>
Stars: 2 <br>
Implementation of the AIControl paper in Julia 1.0
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="AMD" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AMD/index.html"> AMD</a> <br>
Stars: 0 <br>
Approximate Minimum Degree Ordering in Julia
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="5" data-groups='["default"]' data-title="AMQPClient" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AMQPClient/index.html"> AMQPClient</a> <br>
Stars: 5 <br>
A Julia AMQP (Advanced Message Queuing Protocol) / RabbitMQ Client.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="4" data-groups='["default"]' data-title="ANOVA" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/ANOVA/index.html"> ANOVA</a> <br>
Stars: 4 <br>
Provides a Simple Way to Calculate ANOVAs From Fitted Linear Models.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="3" data-groups='["default"]' data-title="ASDF" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/ASDF/index.html"> ASDF</a> <br>
Stars: 3 <br>
A Julia implementation of the Advanced Scientific Data Format (ASDF)
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="22" data-groups='["default"]' data-title="AWSCore" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AWSCore/index.html"> AWSCore</a> <br>
Stars: 22 <br>
Amazon Web Services Core Functions and Types
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="5" data-groups='["default"]' data-title="AWSS3" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AWSS3/index.html"> AWSS3</a> <br>
Stars: 5 <br>
AWS S3 Simple Storage Service interface for Julia.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="8" data-groups='["default"]' data-title="AWSSDK" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AWSSDK/index.html"> AWSSDK</a> <br>
Stars: 8 <br>
Julia APIs for all public Amazon Web Services (requires AWSCore.jl)
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="2" data-groups='["default"]' data-title="AWSSQS" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AWSSQS/index.html"> AWSSQS</a> <br>
Stars: 2 <br>
AWS SQS Simple Queue Service interface for Julia
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="AbstractInstances" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AbstractInstances/index.html"> AbstractInstances</a> <br>
Stars: 0 <br>
A package for making concrete instances of abstract types
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="AbstractLattices" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AbstractLattices/index.html"> AbstractLattices</a> <br>
Stars: 0 <br>
Abstract lattice functions meet and join, with symbols \wedge and \vee
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="12" data-groups='["default"]' data-title="AbstractPlotting" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AbstractPlotting/index.html"> AbstractPlotting</a> <br>
Stars: 12 <br>
An abstract interface for plotting libraries
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="37" data-groups='["default"]' data-title="AbstractTrees" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AbstractTrees/index.html"> AbstractTrees</a> <br>
Stars: 37 <br>
Abstract julia interfaces for working with trees
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="5" data-groups='["default"]' data-title="AcceleratedArrays" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AcceleratedArrays/index.html"> AcceleratedArrays</a> <br>
Stars: 5 <br>
Arrays with acceleration indices
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="6" data-groups='["default"]' data-title="ActuarialScience" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/ActuarialScience/index.html"> ActuarialScience</a> <br>
Stars: 6 <br>
A library to bring actuarial modeling to Julia.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="9" data-groups='["default"]' data-title="Adapt" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/Adapt/index.html"> Adapt</a> <br>
Stars: 9 <br>
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="AdaptiveRejectionSampling" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AdaptiveRejectionSampling/index.html"> AdaptiveRejectionSampling</a> <br>
Stars: 0 <br>
Julia package for fast flexible adaptive rejection sampling
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="AdjacentFloats" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AdjacentFloats/index.html"> AdjacentFloats</a> <br>
Stars: 0 <br>
!!obsolete!! Versions of nextfloat, prevfloat that are at least as fast.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="AdobeGlyphList" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AdobeGlyphList/index.html"> AdobeGlyphList</a> <br>
Stars: 0 <br>
AGL & AGLFN
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="4" data-groups='["default"]' data-title="AffineInvariantMCMC" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AffineInvariantMCMC/index.html"> AffineInvariantMCMC</a> <br>
Stars: 4 <br>
Goodman & Weare's Affine Invariant Markov chain Monte Carlo (MCMC) Ensemble sampler
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="AhoCorasickAutomatons" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AhoCorasickAutomatons/index.html"> AhoCorasickAutomatons</a> <br>
Stars: 0 <br>
A 2-Array implementation of Aho–Corasick automaton.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="25" data-groups='["default"]' data-title="AlgebraicMultigrid" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AlgebraicMultigrid/index.html"> AlgebraicMultigrid</a> <br>
Stars: 25 <br>
Algebraic Multigrid in Julia
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="3" data-groups='["default"]' data-title="Algencan" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/Algencan/index.html"> Algencan</a> <br>
Stars: 3 <br>
JuMP / MathProgBase interface for Algencan
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="9" data-groups='["default"]' data-title="AmplNLReader" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AmplNLReader/index.html"> AmplNLReader</a> <br>
Stars: 9 <br>
Julia AMPL Models Conforming to NLPModels.jl
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="23" data-groups='["default"]' data-title="AmplNLWriter" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AmplNLWriter/index.html"> AmplNLWriter</a> <br>
Stars: 23 <br>
Julia interface to AMPL-enabled solvers
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="5" data-groups='["default"]' data-title="Anasol" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/Anasol/index.html"> Anasol</a> <br>
Stars: 5 <br>
Analytical solutions for groundwater contaminant transport
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="6" data-groups='["default"]' data-title="AngleBetweenVectors" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AngleBetweenVectors/index.html"> AngleBetweenVectors</a> <br>
Stars: 6 <br>
An accurate and stable calculation of the angle separating two vectors.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="62" data-groups='["default"]' data-title="ApplicationBuilder" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/ApplicationBuilder/index.html"> ApplicationBuilder</a> <br>
Stars: 62 <br>
Compile, bundle, and release julia software
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="1" data-groups='["default"]' data-title="ApproximateComputations" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/ApproximateComputations/index.html"> ApproximateComputations</a> <br>
Stars: 1 <br>
A library of tools to allow function synthesis for approximate computations
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="1" data-groups='["default"]' data-title="ArcadeLearningEnvironment" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/ArcadeLearningEnvironment/index.html"> ArcadeLearningEnvironment</a> <br>
Stars: 1 <br>
ArcadeLearningEnvironment Julia interface
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="25" data-groups='["default"]' data-title="ArgCheck" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/ArgCheck/index.html"> ArgCheck</a> <br>
Stars: 25 <br>
Package for checking function arguments
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="5" data-groups='["default"]' data-title="ArrayInterface" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/ArrayInterface/index.html"> ArrayInterface</a> <br>
Stars: 5 <br>
Designs for new Base array interface primitives
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="30" data-groups='["default"]' data-title="Arrow" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/Arrow/index.html"> Arrow</a> <br>
Stars: 30 <br>
Julia implementation of the Apache Arrow data standard.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="4" data-groups='["default"]' data-title="AssetRegistry" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AssetRegistry/index.html"> AssetRegistry</a> <br>
Stars: 4 <br>
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="AtlasRobot" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AtlasRobot/index.html"> AtlasRobot</a> <br>
Stars: 0 <br>
URDF and meshes for the Boston Dynamics Atlas robot (v5)
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="35" data-groups='["default"]' data-title="Atom" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/Atom/index.html"> Atom</a> <br>
Stars: 35 <br>
Julia Client for Atom
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="2" data-groups='["default"]' data-title="Attrs" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/Attrs/index.html"> Attrs</a> <br>
Stars: 2 <br>
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="12" data-groups='["default"]' data-title="AuditoryFilters" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AuditoryFilters/index.html"> AuditoryFilters</a> <br>
Stars: 12 <br>
Auditory filterbanks in Julia
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="Authorization" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/Authorization/index.html"> Authorization</a> <br>
Stars: 0 <br>
A small but flexible Julialang API for controlling an authenticated client's access to resources.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="101" data-groups='["default"]' data-title="AutoGrad" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AutoGrad/index.html"> AutoGrad</a> <br>
Stars: 101 <br>
Julia port of the Python autograd package.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="18" data-groups='["default"]' data-title="AutoHashEquals" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AutoHashEquals/index.html"> AutoHashEquals</a> <br>
Stars: 18 <br>
A Julia macro to add == and hash() to composite types.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="3" data-groups='["default"]' data-title="AxisAlgorithms" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/AxisAlgorithms/index.html"> AxisAlgorithms</a> <br>
Stars: 3 <br>
Efficient filtering and linear algebra routines for multidimensional arrays
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="6" data-groups='["default"]' data-title="BGZFStreams" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BGZFStreams/index.html"> BGZFStreams</a> <br>
Stars: 6 <br>
BGZF Stream
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="BHAtp" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BHAtp/index.html"> BHAtp</a> <br>
Stars: 0 <br>
Bottom Hole Assembly building and dropping rates
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="BKTrees" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BKTrees/index.html"> BKTrees</a> <br>
Stars: 0 <br>
Burkhard-Keller trees implementation
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="44" data-groups='["default"]' data-title="BSON" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BSON/index.html"> BSON</a> <br>
Stars: 44 <br>
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="1" data-groups='["default"]' data-title="BarycentricInterpolation" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BarycentricInterpolation/index.html"> BarycentricInterpolation</a> <br>
Stars: 1 <br>
A Julia implementation of Barycentric interpolation and differentiation formulae
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="3" data-groups='["default"]' data-title="Base58" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/Base58/index.html"> Base58</a> <br>
Stars: 3 <br>
Base58 and Base58Check encoding for Julia
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="18" data-groups='["default"]' data-title="BasisMatrices" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BasisMatrices/index.html"> BasisMatrices</a> <br>
Stars: 18 <br>
Routines for constructing BasisMatrices of different types (Chebyshev polynomials, B-Splines, piecewise linear, complete monomials, Smolyak...)
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="BayesOpt" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BayesOpt/index.html"> BayesOpt</a> <br>
Stars: 0 <br>
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="7" data-groups='["default"]' data-title="BayesianOptimization" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BayesianOptimization/index.html"> BayesianOptimization</a> <br>
Stars: 7 <br>
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="Bedgraph" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/Bedgraph/index.html"> Bedgraph</a> <br>
Stars: 0 <br>
Read and write support for bedGraph file format.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="1" data-groups='["default"]' data-title="BedgraphFiles" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BedgraphFiles/index.html"> BedgraphFiles</a> <br>
Stars: 1 <br>
FileIO.jl integration for bedGraph files
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="BeliefUpdaters" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BeliefUpdaters/index.html"> BeliefUpdaters</a> <br>
Stars: 0 <br>
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="6" data-groups='["default"]' data-title="BenchmarkProfiles" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BenchmarkProfiles/index.html"> BenchmarkProfiles</a> <br>
Stars: 6 <br>
Performance and data profiles
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="1" data-groups='["default"]' data-title="BernoulliFactory" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BernoulliFactory/index.html"> BernoulliFactory</a> <br>
Stars: 1 <br>
Common Bernoulli factory algorithms
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="1" data-groups='["default"]' data-title="BigArrays" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BigArrays/index.html"> BigArrays</a> <br>
Stars: 1 <br>
storing and accessing large Julia array locally or in cloud storage.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="BigCombinatorics" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BigCombinatorics/index.html"> BigCombinatorics</a> <br>
Stars: 0 <br>
Combinatorial functions that always return a BigInt
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="5" data-groups='["default"]' data-title="Bijectors" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/Bijectors/index.html"> Bijectors</a> <br>
Stars: 5 <br>
Automatic transformations for constrained random variables.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="39" data-groups='["default"]' data-title="BinDeps" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BinDeps/index.html"> BinDeps</a> <br>
Stars: 39 <br>
Tool for building binary dependencies for Julia modules
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="17" data-groups='["default"]' data-title="BinaryProvider" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BinaryProvider/index.html"> BinaryProvider</a> <br>
Stars: 17 <br>
A reliable binary provider for Julia
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="7" data-groups='["default"]' data-title="Bio3DView" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/Bio3DView/index.html"> Bio3DView</a> <br>
Stars: 7 <br>
A julia package to view macromolecular structures in the REPL or in a Jupyter notebook/JupyterLab
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="BitFlags" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BitFlags/index.html"> BitFlags</a> <br>
Stars: 0 <br>
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="1" data-groups='["default"]' data-title="BitFloats" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BitFloats/index.html"> BitFloats</a> <br>
Stars: 1 <br>
Float80 and Float128 types provided by LLVM
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="3" data-groups='["default"]' data-title="BitIntegers" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BitIntegers/index.html"> BitIntegers</a> <br>
Stars: 3 <br>
Fixed-width integers similar to builtin ones
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="Bits" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/Bits/index.html"> Bits</a> <br>
Stars: 0 <br>
Utility functions for bits manipulation
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="3" data-groups='["default"]' data-title="BlackBoxOptimizationBenchmarking" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BlackBoxOptimizationBenchmarking/index.html"> BlackBoxOptimizationBenchmarking</a> <br>
Stars: 3 <br>
BlackBoxOptimizationBenchmarking
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="11" data-groups='["default"]' data-title="Blobs" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/Blobs/index.html"> Blobs</a> <br>
Stars: 11 <br>
Binary blobs with on-the-fly pointer patching
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="15" data-groups='["default"]' data-title="Blosc" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/Blosc/index.html"> Blosc</a> <br>
Stars: 15 <br>
Blosc compression for the Julia language
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="6" data-groups='["default"]' data-title="BlossomV" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BlossomV/index.html"> BlossomV</a> <br>
Stars: 6 <br>
Julia interface for the Blossom V perfect matching algorithm
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="6" data-groups='["default"]' data-title="BoltzmannMachines" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BoltzmannMachines/index.html"> BoltzmannMachines</a> <br>
Stars: 6 <br>
A Julia package for training and evaluating multimodal deep Boltzmann machines
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="13" data-groups='["default"]' data-title="BoundaryValueDiffEq" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BoundaryValueDiffEq/index.html"> BoundaryValueDiffEq</a> <br>
Stars: 13 <br>
Boundary value problem (BVP) solvers for the DifferentialEquations.jl ecosystem
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="3" data-groups='["default"]' data-title="BoundingSphere" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BoundingSphere/index.html"> BoundingSphere</a> <br>
Stars: 3 <br>
Package contains algorithms to calculate smallest enclosing sphere for a given set of points in N dimensions.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="1" data-groups='["default"]' data-title="BracedErrors" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BracedErrors/index.html"> BracedErrors</a> <br>
Stars: 1 <br>
This package helps to automate the printing of values with errors in brackets.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="1" data-groups='["default"]' data-title="BritishNationalGrid" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BritishNationalGrid/index.html"> BritishNationalGrid</a> <br>
Stars: 1 <br>
Convert between British National Grid coordinates and WGS84 longitude and latitude, in Julia
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="13" data-groups='["default"]' data-title="BusinessDays" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/BusinessDays/index.html"> BusinessDays</a> <br>
Stars: 13 <br>
:calendar: A highly optimized Business Days calculator written in Julia language. Also known as Working Days calculator.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="2" data-groups='["default"]' data-title="C3D" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/C3D/index.html"> C3D</a> <br>
Stars: 2 <br>
A pure Julia package for working with C3D files
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="CEnum" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/CEnum/index.html"> CEnum</a> <br>
Stars: 0 <br>
C-compatible enum for Julia
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="5" data-groups='["default"]' data-title="CMake" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/CMake/index.html"> CMake</a> <br>
Stars: 5 <br>
Julia package to provide access to CMake
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="6" data-groups='["default"]' data-title="CMakeWrapper" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/CMakeWrapper/index.html"> CMakeWrapper</a> <br>
Stars: 6 <br>
Build CMake packages from Julia
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="5" data-groups='["default"]' data-title="COESA" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/COESA/index.html"> COESA</a> <br>
Stars: 5 <br>
The U.S. Committee on Extension to the Standard Atmosphere (COESA) atmosphere model, also known as the U.S. Standard Atmosphere, 1976.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="CORBITS" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/CORBITS/index.html"> CORBITS</a> <br>
Stars: 0 <br>
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="24" data-groups='["default"]' data-title="COSMO" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/COSMO/index.html"> COSMO</a> <br>
Stars: 24 <br>
COSMO: An ADMM-based solver for conic problems. Written in Julia
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="11" data-groups='["default"]' data-title="CPUTime" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/CPUTime/index.html"> CPUTime</a> <br>
Stars: 11 <br>
Julia module for CPU timing
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="5" data-groups='["default"]' data-title="CRlibm" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/CRlibm/index.html"> CRlibm</a> <br>
Stars: 5 <br>
Correctly-rounded mathematical functions for Julia
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="5" data-groups='["default"]' data-title="CSSUtil" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/CSSUtil/index.html"> CSSUtil</a> <br>
Stars: 5 <br>
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="45" data-groups='["default"]' data-title="CSTParser" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/CSTParser/index.html"> CSTParser</a> <br>
Stars: 45 <br>
A concrete syntax tree parser for Julia
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="16" data-groups='["default"]' data-title="CSVFiles" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/CSVFiles/index.html"> CSVFiles</a> <br>
Stars: 16 <br>
FileIO.jl integration for CSV files
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="6" data-groups='["default"]' data-title="CUDAapi" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/CUDAapi/index.html"> CUDAapi</a> <br>
Stars: 6 <br>
Reusable components for CUDA API development.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="1" data-groups='["default"]' data-title="Caching" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/Caching/index.html"> Caching</a> <br>
Stars: 1 <br>
Memoization mechanism
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="32" data-groups='["default"]' data-title="Cairo" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/Cairo/index.html"> Cairo</a> <br>
Stars: 32 <br>
Bindings to the Cairo graphics library.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="123" data-groups='["default"]' data-title="Calculus" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/Calculus/index.html"> Calculus</a> <br>
Stars: 123 <br>
Calculus functions in Julia
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="3" data-groups='["default"]' data-title="CancerSeqSim" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/CancerSeqSim/index.html"> CancerSeqSim</a> <br>
Stars: 3 <br>
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="25" data-groups='["default"]' data-title="Cascadia" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/Cascadia/index.html"> Cascadia</a> <br>
Stars: 25 <br>
A CSS Selector library in Julia
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="2" data-groups='["default"]' data-title="CatIndices" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/CatIndices/index.html"> CatIndices</a> <br>
Stars: 2 <br>
Julia package for indices-aware array concatenation and growth
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="31" data-groups='["default"]' data-title="CatViews" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/CatViews/index.html"> CatViews</a> <br>
Stars: 31 <br>
Concatenated Array views in Julia.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="28" data-groups='["default"]' data-title="Cbc" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/Cbc/index.html"> Cbc</a> <br>
Stars: 28 <br>
Interface to the Coin-OR Cbc solver for mixed-integer programming
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="17" data-groups='["default"]' data-title="ChangePrecision" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/ChangePrecision/index.html"> ChangePrecision</a> <br>
Stars: 17 <br>
macro to change the default floating-point precision in Julia code
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="16" data-groups='["default"]' data-title="ChaosTools" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/ChaosTools/index.html"> ChaosTools</a> <br>
Stars: 16 <br>
Tools for the exploration of chaos and nonlinear dynamics
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="CharSetEncodings" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/CharSetEncodings/index.html"> CharSetEncodings</a> <br>
Stars: 0 <br>
Types and Traits for Character Sets, Encodings, and Character Set Encodings
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="ChrBase" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/ChrBase/index.html"> ChrBase</a> <br>
Stars: 0 <br>
Support for parameterized character type `Chr`, and common aliases (ASCIIChr, LatinChr, UCS2Chr, UTF32Chr)
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="15" data-groups='["default"]' data-title="Circuitscape" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/Circuitscape/index.html"> Circuitscape</a> <br>
Stars: 15 <br>
Algorithms from circuit theory to predict connectivity in heterogeneous landscapes
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="0" data-groups='["default"]' data-title="CircularArrays" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/CircularArrays/index.html"> CircularArrays</a> <br>
Stars: 0 <br>
Multi-dimensional arrays with fixed size and circular indexing.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="3" data-groups='["default"]' data-title="ClassImbalance" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/ClassImbalance/index.html"> ClassImbalance</a> <br>
Stars: 3 <br>
Sampling-based methods for correcting for class imbalance in two-category classification problems.
<div>
</figure>
<figure class="col-2@sm picture-item" data-stars="10" data-groups='["default"]' data-title="Clipper" style="border-style: solid; border-width: 2px; width: 250px; height: 180px">
<div>
<a href="docs/Clipper/index.html"> Clipper</a> <br>
Stars: 10 <br>
Julia wrapping of clipper
<div>
</figure>