Category: c #
You can read and write a binary file at the same time in almost any modern programming languages (as far as I know, not VBScript). If you open the …
In Matlab, there is a function linspace that generates n evenly-spaced points between two given points. For example, x1 = 1 x2 = 9 n = 3 y = …
I need a tool to run multiple scripts (mainly vbscript or jscript files on windows) at the same time (in parallel) so I decide to write one (it is …
Machine learning is very popular nowadays. Everybody claims that they are doing it 🙂 This tutorial will try to explain a few terms in the field of machine learning …
If you write unit tests, you must have known the basic Assert usages, such as Assert.IsTrue, Assert.AreEqual … It is less clear/clean than the fluent expressions. But first you …