Serial Port buffering is explained. How to receive the serial port data without any loss if incoming data stream flow into seperate triggers is realized using c#
Read more →With Instrument control, one can connect to the desktop instrument using computer and take measurements. There are several different ways to control your instruments – you can either use an instrument driver or control the instrument through direct I/O commands (see Figure1). Figure1.Instrument Control Architecture
Read more →In mathematics, a polynomial is an expression of finite length constructed from variables (also known as indeterminates) and constants, using only the operations of addition, subtraction, multiplication, and non-negative integer exponents. For example, x2 – 4x + 7 is a polynomial, but x2 – 4/x + 7×3/2
Read more →In the mathematical field of numerical analysis, interpolation is a method of constructing new data points within the range of a discrete set of known data points. In engineering and science, one often has a number of data points, obtained by sampling or experimentation, which represent the values
Read more →We all use Rich Text Box controls in our C# applications. RichTextBox has many options to format text. However one may ask “how to make RichTextBox show the lines’ numbers on the left side, like in VS or Notepad++ or UltraEdit?”
Read more →Another cool feature of C# 3.0 is Extension Methods. They allow you to extend an existing type with new functionality, without having to sub-class or recompile the old type. For instance, you might like to know whether a certain string was a number or not. The usual
Read more →This article is for enumerations in C# and Enum To Readable String
Read more →