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
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
Related Q & A:
- what is the difference between sum of first n primes and prime(prime(n?Best solution by Mathematics
- What is C-Level Communication?Best solution by Yahoo! Answers
- Are there creative jobs in the N.Y.C area?Best solution by simplyhired.com
- Are a c.n.a. and a medical assistant the same thing?Best solution by Yahoo! Answers
- What impact does switching from a NCAA division 1 to division 3 has on college students and adminstrators?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.