On Feb. 22, 2021, 2:54 a.m.
Hi Zainab,
data is the vector(array) in Matlab that contains your data to be written into named mif file. It is meant to be signed integer (no fractions) in t…
Posts
Topics
On Feb. 22, 2021, 2:54 a.m.
Hi Zainab,
data is the vector(array) in Matlab that contains your data to be written into named mif file. It is meant to be signed integer (no fractions) in t…
On Feb. 22, 2021, 2:54 a.m.
name = 'image';
img = imread(strcat(name,'.gif'));
g = i…
On Feb. 22, 2021, 2:53 a.m.
Hi,
You better use a program to write the mif files as copy/paste is suitable for small size data.
Here is an example
Using Matlab to write 256 signed data …
On Feb. 22, 2021, 2:52 a.m.
I assume you use Matlab, here is short cut:
convert your data to signed integers:
data = round(data *(2^15-1)/max(data)); %for 16 bits mif
then display as co…