답변 있음
amplitude of FFT output high compared to input
Remember that you must scale the output of the FFT, for example: fs = 250; % Sampling frequency [Hz]. Ts = 1/fs; % ...

12년 초과 전 | 0

답변 있음
adding noise to an ecg signal
I would do something like this: % Sampling fs = 1000; Ts = 1/fs; % Time vector t = 1:Ts:10-Ts; % Signal f =...

거의 13년 전 | 2

답변 있음
Converting/interpolating into different array
Are you sure is not the other way around? Moving from a 10 element array to a 25 element array you would be _interpolation_. Mov...

거의 13년 전 | 0

답변 있음
Four data sets on one plot
I think in a raw way, this is what you want, am I right? L=[0 10 20 30 40 50 60 70 80 90 100]; Op=[0.492 0.498 0.503 0.509...

거의 13년 전 | 0

답변 있음
cropping
Face detection is a big, big topic. Assuming you are extracting the information you wish (the rectangular part) of an image and ...

거의 13년 전 | 0

답변 있음
extracting info from edit text gui
To extract the data (text) from the edit box, you will need something more or less like this: % Get the string from the editT...

거의 13년 전 | 1

답변 있음
how to display the plots one by one in axes by selecting puhsbutton
I would use this <http://www.mathworks.com/matlabcentral/fileexchange/3939-import-fig-file-to-axes script>. With it, you choose ...

거의 13년 전 | 1

답변 있음
2D plot help
You could overlap plots using _hold_. For example: figure(); hold('on'); plot(1:10, 'b*'); plot(10:-1:1, 'ro'); hold(...

거의 13년 전 | 0

답변 있음
how to mosaic two images
I recommend you to check the following files in the FEX: <http://www.mathworks.com/matlabcentral/fileexchange/22264-mosaic-ra...

거의 13년 전 | 0

| 수락됨

답변 있음
ECG analysis toolbox
Making a quick search on the web, I found the following <http://biosig.sourceforge.net/> <http://www.mit.edu/~gari/algos.html>...

거의 13년 전 | 0

답변 있음
String of matlab script
tt must be a string (an array of characters) previously defined in your code. What the code line does is display in console the ...

거의 13년 전 | 3

답변 있음
Writing parameters to a text file
Writing a text file in MATLAB is very easy. Take a look at the documentation for the function _fopen_, _fprintf_, and _fclose_. ...

거의 13년 전 | 0

| 수락됨

답변 있음
Skip Error Message and Continue with the M-File
Completing Gerd's answer, I would include the _catch_ statement. The _catch_ executes everytime an error is encountered in the _...

거의 13년 전 | 5

| 수락됨

답변 있음
Load and average lots of .mat files
You can try using an intermediate variable to store the information you load from each file. On a quick thought, you must do som...

거의 13년 전 | 2

답변 있음
clear single plots intead of the whole plot
Yes, it is possible thanks to the handles. For example, try something like this: x = 1:1 0; figure(); plotHandles ...

거의 13년 전 | 3

| 수락됨

답변 있음
Removing Upper XTicks ..or Right Y Ticks..How?
I recommend you to look at this <http://www.mathworks.com/matlabcentral/answers/4515-removing-ticks thread>, where your same que...

거의 13년 전 | 2

답변 있음
two figures or image in single gui
Mmm, actually is doing the same for one axes than for two. You just need to specify in which axes you will like to display the i...

거의 13년 전 | 0

| 수락됨

답변 있음
3 questions about guide
Regarding your Question #2, I suggest you take a look at the following <http://www.mathworks.com/matlabcentral/fileexchange/1519...

거의 13년 전 | 0

| 수락됨

답변 있음
Converting Analog Filter into Digital Filter
Your question is too wide, since there are a lot of digital filters that could behave they way you describe. Try using the Filte...

거의 13년 전 | 0

답변 있음
axes tick in scientific notation
Maybe you should check this wonderful <http://blogs.mathworks.com/loren/2007/12/11/making-pretty-graphs/ tutorial> by Loren Shur...

거의 13년 전 | 1

답변 있음
Image processing help
Indeed, I agree with Andreas Goser: image comparison is a very wide field. However, as a first approach, a very simple but alway...

거의 13년 전 | 0

답변 있음
Loading Videos without # of frames information
Believe it or not, sometimes the frame rate of a video is not an integer number. For example, even though you may see from the v...

거의 13년 전 | 1

답변 있음
Problem in Superimpose components on image ??
I think this <http://www.mathworks.com/support/solutions/en/data/1-1AK7N/ tutorial> might give you just what you need ;-)

거의 13년 전 | 1

답변 있음
problem plotting on a graph
If "hold" does not work for you, why don't you try subplot? help subplot doc subplot For example: figure(); s...

거의 13년 전 | 0

| 수락됨

답변 있음
Unknow transfer function
Try looking into the function d2c help d2c doc d2c Hope it helps!

거의 13년 전 | 0

답변 있음
data sharing Between two GUIs
Quan Quach has an _excellent_ <http://blinkdagger.com/matlab/matlab-gui-how-to-easily-share-data-between-two-separate-guis/ tuto...

거의 13년 전 | 0

답변 있음
creating a axes toolbar in GUI
Yes, it is pretty easy. In the GUI interface, go to "Toolbar editor". There you can choose a set of predefined tools, including ...

거의 13년 전 | 0

답변 있음
problem with fft
Why don't you use MATLAB's <http://www.mathworks.com/help/techdoc/ref/fft.html fft> and <http://www.mathworks.com/help/techdoc/r...

거의 13년 전 | 0

| 수락됨

답변 있음
zero crossing in matlab code
You might like to check this <http://www.mathworks.com/matlabcentral/fileexchange/2432 function>. Hope it helps ;-)

거의 13년 전 | 0

답변 있음
Multi GUI's
It sounds to me that you are trying to communicate two GUIs. Quan Quach has an excellent <http://blinkdagger.com/matlab/matlab-g...

거의 13년 전 | 0

| 수락됨

더 보기