Answered
Why I got the following error when I run the ".exe" file compiled by matlab 2012b?
I'm not sure that you can create an *.exe file with only a function. I think that you have to compile a script.

10 years ago | 0

Answered
how to insert image to gui?
You can use the function 'axes' to select the axe for your image : axes(axisHandle) matlabImage = imread('image.png'...

10 years ago | 6

Answered
process data from csv file
I suggest you to use the function csvread : clear; close all; out = csvread('C:\Users\yyao\Desktop\Luminance_18.csv',...

10 years ago | 0

| accepted

Answered
How can i find rows or coulmns which contain maximum zeroes?
If you want the row and the colum with the maximum of values equal to zeros, I propose (for a 2D matrix) : [numberOfZeroCol...

10 years ago | 1