How can I convert Matlab code to c#?

What is C++ translation for Matlabs `fread(fp, 1, 'int32')` and fread(fp, n, 'uchar')

  • So I try to convert such Matlab code to C++: ss = 'file.mask' fp = fopen(ss, 'rb'); sx = fread(fp, 1, 'int32') sy = fread(fp, 1, 'int32') mask = zeros(sy, sx); mm = mask(100, 100:200); count = zeros(10, 1); for i = 1:sy row = fread(fp, sx, 'uchar'); for j = 1:sx for k = 1:10 if row(j) == k - 1 count(k) = count(k) + 1; end end end mask(i, :) = row; end fclose(fp); And so I wonder what is C++ analog of Matlab fread?

  • Answer:

    If you really want a C++ analog and not a C analog (or even a C/C++ analog), then you should rather use std::ifstream: std::ifstream in("file.mask", std::ios_base::in | std::ios_base::binary); int sx, sy; in.read(reinterpret_cast<char*>(&sx), sizeof(int)); in.read(reinterpret_cast<char*>(&sy), sizeof(int)); std::vector<unsigned char> row(sx); for(...) { ... in.read(reinterpret_cast<char*>(&row[0]), sx); ... }

Spender at Stack Overflow Visit the source

Was this solution helpful to you?

Other answers

std::fstream is the C++ standard (with no other libraries than the standard one) of accessing files. It provides operator>>, which is probably what you are looking for.

Griwes

std::fstream is the standard in c++ and that is certainly what you should use. However, fread and fclose are standard C function and thus can be used in C++.

Ugo

fread exists in C, which is not commonly used in C++. However, if you want something pretty close, you can do the following. sx=fread(fp, 1, 'int32') is int sx; fread(&sx, sizeof(int), 1, fp); row = fread(fp, sx, 'uchar'); is unsigned char row; fread(&row, sizeof(unsigned char), sx, fp); If you need to read and parse textually represented numbers, you can use fscanf with C IO functions. Edit: Fixed the size in the second conversion.

Cem Kalyoncu

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.