Answered
fourier analisys - harmonic analisys
You can get the amplitude with abs(Y); The components are in a very specific order. They are arranged by frequency. The ...

13 years ago | 0

Question


-nojvm option
You can start MATLAB with a number of flags one of which is <http://www.mathworks.co.uk/help/techdoc/rn/bropbi9-1.html#brubkzc-1...

13 years ago | 2 answers | 2

2

answers

Answered
why is error?
The error is pretty straight forward. The command save can xzycbcr is trying to save the variable "xzycbcr" into a file ...

13 years ago | 0

Answered
locating the relative position of a value in a 2 x matrix
From an understanding point, maybe this is better x = randn(180); [y, I] = min(x); [~, J] = min(y); [I(J), J]

13 years ago | 0

Answered
locating the relative position of a value in a 2 x matrix
x = randn(180); [~, I] = min(x(:)); [I, J] = ind2sub(size(x), I);

13 years ago | 0

| accepted

Answered
setting axis font size on scatter plot
set(gca, 'FontSize', 7)

13 years ago | 0

| accepted

Answered
Colouring stacked bar chart
I am guessing there is a cleaner solution using the stacked barseries and changing the colors, but I couldn't figure it out. ...

13 years ago | 0

| accepted

Answered
Overwriting a setter or getter in a subclass: why is this not possible???
I don't know much about OOP concepts or implementations in any language (including MATLAB), but I think in general there is conf...

13 years ago | 0

Answered
What is the reasoning behind the fact that min(0,NaN) is 0?
Given the behavior of MIN, I find it odd that there is a NANMIN function.

13 years ago | 2

Answered
Convert structure data into object
Yes.

13 years ago | 0

Answered
car plate number recognition
This has been asked before and someone was kind enough to supply code. http://www.mathworks.com/matlabcentral/answers/33918-r...

13 years ago | 0

Answered
adding string to MATLAB workspace
While you can do these things. Please don't. To assign a string to your workspace: assignin('base', 'mystr', 'Hello Worl...

13 years ago | 1

| accepted

Answered
Basic Vector Manipulation
There might be faster ways depending on K. A = [8,4,5,2,4,6,4,8]; K = [1,3,5,1] x = cumsum(A); x(k)

13 years ago | 2

Answered
strfind on gpu
I think I lead you to use STRFIND in my answer to this <http://www.mathworks.com/matlabcentral/answers/37395-repeated-event-in-a...

13 years ago | 0

Answered
tic and toc to calculated the simulation time...but the this not the same everytime...
The running time of your program is going to be slightly different every time because the OS does slightly different things whil...

13 years ago | 1

Answered
Averaging Matrix and store it in a new matrix
Assuming you really want to do this with loops and mean, presumably for homework, you are on the correct track. Te thing you mis...

13 years ago | 0

Answered
Enriching data plots & figures
I would have a look at the <http://www.mathworks.com/matlabcentral/fileexchange/?page=3&term=zoom FEX>. There are a number of su...

13 years ago | 0

Answered
Averaging Matrix and store it in a new matrix
Assuming your data x is N x M and not a color image y = conv2(x, ones(3, 3) / 9, 'same');

13 years ago | 1

Answered
What is it that I get from MATLAB function probplot?
Basically, if your data came from the chosen distribution (exponential/Weibull) then the blue data points would overlap the dash...

13 years ago | 1

Answered
Collect variables in structure with corresponding fieldnames
You can define function x = fcn(varargin) x = struct; for ii = 1:nargin x.(inputname(ii)) = varargin{ii}; ...

13 years ago | 2

Answered
Integrating matlab and java
My guess is everything you need is contained in <http://undocumentedmatlab.com/matlab-java-book/ Yair's book>. You could also ch...

13 years ago | 1

Answered
File Exchange Select?
Now that I read the blog post linked to by Jan, I am beginning to remember "Select". I also recall a brief period where John too...

13 years ago | 0

| accepted

Answered
dash in textbox
I am assuming you mean en-dash char(8211) or em-dash char(8212).

13 years ago | 0

Answered
Do you suffer from keyboard latency in this forum?
At times yes. 64-bit Linux and Firefox 32-bit Windows and Explorer

13 years ago | 1

Answered
Getting first element of a function output
See this <http://www.mathworks.com/matlabcentral/answers/1325-what-is-missing-from-matlab#answer_1931 answer> about what is miss...

13 years ago | 4

Answered
how to create a standalone application in MATLAB?
This has been asked so often it is <http://matlab.wikia.com/wiki/FAQ#How_can_I_make_a_standalone_executable_from_my_MATLAB_code....

13 years ago | 0

Answered
How do I post a picture with my question
If someone posts a question with a link like http://tinypic.com/r/14bib77/6 and I want to edit the question to embed the image I...

13 years ago | 0

Answered
How to turn off the axes title of autocorrelation function?
I don't have the Econometrics Toolbox so I cannot test, but delete(cell2mat(get(gca, {'YLabel', 'XLabel'}))) should get ...

13 years ago | 2

| accepted

Answered
[DISCONTINUED] Wish-list for MATLAB Answer sections.
That before/when the magic editor powers kick in (edit and delete buttons showing up everywhere) that an email is sent to the ed...

13 years ago | 0

Answered
graphic,axes
The axis "numbers" are called tick labels set(gca, {'XTickLabel', 'YTickLabel', 'ZTickLabel'}, {[], [], []})

13 years ago | 0

| accepted

Load more