
If filename is a MAT-file, then S is a structure array. S load ( ) loads data into S, using any of the input arguments in the previous syntax group. Load (filename,'-mat',variables) loads the specified variables from filename.
...

Matlab Read File Into Array Full Script Option
Here the condition is when the two binary signals Binary_1 and Binary_2 not equal to each other.Code Snippet: Error = nnz(Binary_1 ~= Binary_2) Full Script Option 1 (line breaks/spaces text file): File_Name = "Text_1.txt" Full Script Option 2 (single line, no spaces text file): File_Name = "Text_1.txt" Binary_1 = str2num(cell2mat(Binary_1(2:end-1))).' Binary_2 = str2num(cell2mat(Binary_2(2:end-1))). Then by using the nnz() (number of non-zeroes) function we can count the number of times the condition is true, "1". This string can be split and converted into an array by using split(), cell2mat() and str2num().Split() → Splits the string into a cell array with individual bits/binaryCell2mat() → Converts the cell array to a character arrayStr2num() → Converts the character array to a numerical double array File_Name = "Text.txt" Binary = str2num(cell2mat(Binary(2:end-1))).' Error checking can be done by comparing the arrays logically in an element-wise fashion.
