abhiphull profile

abhiphull

Statistics

4

Posts

0

Topics

Recent posts (View all)
Re: text to mif conversion

 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…

Re: text to mif conversion

 On Feb. 22, 2021, 2:54 a.m.

i have this full program,its work.but then when i want to change the spesific size,it have the error.

name = 'image';
img = imread(strcat(name,'.gif'));
g = i…

Re: text to mif conversion

 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 …

Re: text to mif conversion

 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…