1
vote
3answers
48 views
How to create a executable .exe file from .m file
I was wondering if there is a way to create a '.exe' file from ' .m' file in matlab , such that it can be run in machine which does not have matlab ( like it can be done in c, C++)
I know writing a …
0
votes
2answers
43 views
Is there a way to change the title of the MATLAB Command Window?
I'm using the C++ API to fire up MATLAB (via engOpenSingleUse). Everything's working fine. But I'd like to change the title of the window from "MATLAB Command Window" to something else.
I often …
1
vote
1answer
19 views
MATLAB help content for an abstract method
In ordinary class methods I can supply content for the "help" command in MATLAB. However, when writing an abstract method, the help function does not see the abstract methods. For example, if you have …
3
votes
3answers
46 views
Save output error messages to file in MATLAB
Is there a way to save MATLAB error messages to a file?
This may be a simple issue, but Google couldn't give me an answer. I've compiled a GUI executable for use without a MATLAB license, and …
1
vote
4answers
74 views
Strange artefact in my Fourier transform
Hey,
I have performed an fft (fast fourier transform) on a time series waveform in Matlab, but I seem to have a weird wave actually in the fourier transform plot, although there are spikes this wave …
0
votes
3answers
87 views
Fudge Factor in Matlab
Hello,
Can anyone enlighten me about the use of fudgeFactor in Matlab?
Thanks.
0
votes
3answers
42 views
Turn Matlab plot into image
Hi,
I have generated a plot like
figure; hold;
axis([0 10 0 10]);
fill([ 1 1 5 5], [5 1 1 5],'b')
and now I want to have this plot as an matrix so that I can i.e. filter the blog with a gaussian. …
0
votes
2answers
45 views
MATLAB function for ‘does matrix contain value X?’ (ala php’s in_array())
Is there a built in matlab function to find out if a matrix contains a value?
Thanks
0
votes
2answers
109 views
How do I write a text file in the same format that it is read in MATLAB?
I have asked a related question in the past and I know how to read the file thanks to the help of the experts here. Now I have a new problem. I first read the data from the file like so:
fid = …
0
votes
2answers
64 views
Least squares optimal scaling
Hi,
I have two waveforms which are linked by a numerical factor. I need to use optimal scaling (least squares) between the two waveforms to calculate this factor in Matlab. Unfortunately I have no …
1
vote
5answers
79 views
matlab: matrix generation help
I want to generate a matrix that is "stairsteppy" from a vector.
Example input vector: [8 12 17]
Example output matrix:
[1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0]
[0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0]
[0 0 0 …
0
votes
2answers
60 views
Calculating corresponding pixels
I have a computer vision set up with two cameras. One of this cameras is a time of flight camera. It gives me the depth of the scene at every pixel. The other camera is standard camera giving me a …
-1
votes
1answer
31 views
how to find remaining nodes in following code which are not participating in making edges with each other?
if you run following code with nodes N=10, you will get randomly picked few nodes with probability say P= .25 and marked as red nodes, then in, for loop every red colored node checking distance with …
1
vote
4answers
83 views
MATLAB: displaying markup (HTML or other format)
I'd like to display a table from a script in MATLAB. I can easily generate the <td> and other HTML elements, but as far as I know, I can only write them to a file.
Is there a way to display …
0
votes
1answer
37 views
Generalized Gaussian Noise generator in matlab
I need to create Generalized Gaussian Noise generator in Matlab.
GGN is a random signal v of following distribution:
v ~ GN(mi, alfa, beta) :
p(v; mi, alfa, beta) = (beta/(2*alfa*gamma(1/beta))) * …
