What is minfo in matlab?
1 view (last 30 days)
Show older comments
Can you explain me what this program is all about and why is the minfo used ?
A = xlsread('C:\Users\test\Downloads\100 genes.xlsx');
[MI,P,Q,R,S,T,U] = minfo(A,0,[],0,[]);
xlswrite('C:\Users\test\Downloads\MI100.xlsx',MI);
0 Comments
Accepted Answer
Walter Roberson
on 25 Jun 2013
There is no "minfo" supplied with MATLAB or any of the toolboxes.
There is, however, minfo as a part of a few different File Exchange contributions, including this one
4 Comments
Walter Roberson
on 26 Jun 2013
I had long forgotten that earlier question. It does explain why the routine name seemed a little familiar, though.
The minfo of that old old toolbox was to be called with a single argument, whereas the sample code is called with five arguments. I do not find any minfo with 5 arguments even in the FEX. The minfo I thought I found turned out to be a .mat file rather than code.
I would therefore say that it seems likely that minfo is a locally-provided routine.
More Answers (0)
See Also
Categories
Find more on Entering Commands in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!