String to Double Conversion in MATLAB

matlab
string conversion
double precision
numerical computation
source code

This page provides MATLAB source code for converting a string to a double number, similar to the str2double function. The str2double MATLAB function converts a string input to a double-precision output value.

output = str2double(str1)

If str1 does not contain a valid scalar value, the function returns NaN (Not a Number).

str1 can be a single element or an array.

Example:

str2double({'2.50' '4.222'})

Another Example:

str1 = '1.25 + 50i'
output = str2double(str1)

This would produce the following output:


output =

1.2500 +50.0000i

CRC MATLAB Source Code for CRC8 and CRC32

CRC MATLAB Source Code for CRC8 and CRC32

Explore CRC MATLAB source code implementations for CRC8 and CRC32 polynomials, used in error detection for wired and wireless communication systems. Includes code examples and explanations.

matlab
crc
source code
ON OFF Keying (OOK) MATLAB Code

ON OFF Keying (OOK) MATLAB Code

MATLAB code for ON OFF Keying (OOK) modulation, including output plots, relevant equations, and download links. OOK is a digital modulation technique.

matlab
ook
modulation