0
votes
2answers
40 views
writing LZW program in matlab
hello
i'm writing LZW in matlab,but i don't know how i should make dictionary?
i want some help in writing program.
thanks
0
votes
3answers
64 views
How to Get a Quantitative Comparison of Two Signals
I’m trying to implement a Blind Source Separation (BSS) algorithm and I’m running into trouble determining the efficacy of the algorithm.
I’m trying to create test cases where I work backwards and …
1
vote
1answer
26 views
can matlab catch signals from linux? SIGIO
does matlab have the capability to catch signals from linux? for example, the signal SIGIO (29) can be sent to a process with a lease on a file when another process attempts to open that file. from my …
3
votes
2answers
70 views
Running Matlab on Nvidia CUDA
I want to run Matlab code on the GPU using Nvidia's CUDA. I found a couple of engines from 3rd party. Would anyone recommend these or are there better ones out there? Any tips or suggestions.
…
1
vote
3answers
129 views
How do I sort files into multiple folders in MATLAB?
I am little stuck on a problem. I have tons of files generated daily and I need to sort them by file name and date. I need to do this so my MATLAB script can read them. I currently do this manually, …
1
vote
1answer
30 views
Digital Filter Design Matlab sptool/fdatool
What is the best method for selecting design properties for a digital filter in Matlab with the GUI sptool? More specifically, if I have a signal, how do I go about determining which filter values …
0
votes
0answers
46 views
How can I insert my foto in matlab gui? [closed]
Please hellp. How can I insert my foto in matlab gui?
Thanks for your answer.
2
votes
2answers
91 views
Why does a circle plotted in MATLAB appear as an ellipse?
I wonder in MATLAB how I would plot a circle and show it correctly instead of by default showing it as an ellipse. I guess it has something to do with the local coordinate system in the axis.
0
votes
2answers
47 views
how to select particular element from following matrix?(in matlab)
data = rand(N,2); %# generate random points
index = (rand(N,1) <= p); %# roll coins to pick with prob p
data(~index, :) = []; %# keep only selected points
…
2
votes
2answers
74 views
How can I draw a circle on an image in MATLAB?
I have an image in MATLAB:
im = rgb2gray(imread('some_image.jpg');
% normalize the image to be between 0 and 1
im = im/max(max(im));
And I've done some processing that resulted in a number of …
1
vote
2answers
45 views
How to plot 2 graphics in one picture?
I have the following code to plot one graphic:
plot(softmax(:,1), softmax(:,2), 'b.')
and then this one to plot another:
plot(softmaxretro(:,1), softmaxretro(:,2), 'r.')
Now I'd like to be able …
2
votes
1answer
46 views
run Matlab in batch mode
Hi
It seems to me that there are two ways to run Matlab in batch mode:
the first one:
unset DISPLAY
matlab > matlab.out 2>&1 << EOF
plot(1:10)
print file
exit
EOF
The …
0
votes
1answer
41 views
Making a plot out of a list of points
I have a set of points
1 1
2 5
3 10
4 20
... ...
How can I plot this in a graphic in matlab? When I try to select in the workspace the my "points" variable and hit "plot" in the menu, it will plot …
6
votes
4answers
131 views
How can I find local maxima in an image in MATLAB?
I have an image in MATLAB:
y = rgb2gray(imread('some_image_file.jpg'));
and I want to do some processing on it:
pic = some_processing(y);
and find the local maxima of the output. That is, all …
1
vote
2answers
88 views
How do I randomly select k points from N points in MATLAB?
I use this code to create and plot N points:
N=input('No. of Nodes:');
data = rand(N,2) % Randomly generated n no. of nodes
x = data(:,1);
y = data(:,2);
plot(x,y,'*');
How do I choose k points …
