NumPy Array to CSV File (ASCII) The NumPy arrays can be saved to CSV files using the savetxt() function. File
Author: bsc
SW Architecture | Quality Attributes
Introduction Functionality vs Quality Attributes Functionality and architectural qualities are orthogonal Some important qualities Some qualities are architectural Qualities and
Docker Cheat Sheet
Terminology Layer A set of read-only files to provision the system. Image A read-only layer that is the base of
Anaconda Cheat Sheet
Conda basics Using environments conda create –name py35 python=3.5 Create a new environment named py35, install Python 3.5 conda activate
Random header in C++
#include <random> This header adds random number generation facilities and can produce random numbers using generators and distributions. Generators: Objects
Maximum Subarray Sum
Given a single dimensional array, find the maximum value, a contiguous subarray can have. Kadane’s Algorithm for finding the maximum