Respondida
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 ...

alrededor de 14 años hace | 0

Pregunta


-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...

alrededor de 14 años hace | 2 respuestas | 2

2

respuestas

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

alrededor de 14 años hace | 0

Respondida
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]

alrededor de 14 años hace | 0

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

alrededor de 14 años hace | 0

| aceptada

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

alrededor de 14 años hace | 0

| aceptada

Respondida
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. ...

alrededor de 14 años hace | 0

| aceptada

Respondida
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...

alrededor de 14 años hace | 0

Respondida
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.

alrededor de 14 años hace | 2

Respondida
Convert structure data into object
Yes.

alrededor de 14 años hace | 0

Respondida
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...

alrededor de 14 años hace | 0

Respondida
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...

alrededor de 14 años hace | 1

| aceptada

Respondida
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)

alrededor de 14 años hace | 2

Respondida
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...

alrededor de 14 años hace | 0

Respondida
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...

alrededor de 14 años hace | 1

Respondida
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...

alrededor de 14 años hace | 0

Respondida
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...

alrededor de 14 años hace | 0

Respondida
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');

alrededor de 14 años hace | 1

Respondida
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...

alrededor de 14 años hace | 1

Respondida
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}; ...

alrededor de 14 años hace | 2

Respondida
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...

alrededor de 14 años hace | 1

Respondida
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...

alrededor de 14 años hace | 0

| aceptada

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

alrededor de 14 años hace | 0

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

alrededor de 14 años hace | 1

Respondida
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...

alrededor de 14 años hace | 4

Respondida
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....

alrededor de 14 años hace | 0

Respondida
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...

alrededor de 14 años hace | 0

Respondida
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 ...

alrededor de 14 años hace | 2

| aceptada

Respondida
[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...

alrededor de 14 años hace | 0

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

alrededor de 14 años hace | 0

| aceptada

Cargar más