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

fast 14 Jahre vor | 0

Frage


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

fast 14 Jahre vor | 2 Antworten | 2

2

Antworten

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

fast 14 Jahre vor | 0

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

fast 14 Jahre vor | 0

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

fast 14 Jahre vor | 0

| akzeptiert

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

fast 14 Jahre vor | 0

| akzeptiert

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

fast 14 Jahre vor | 0

| akzeptiert

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

fast 14 Jahre vor | 0

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

fast 14 Jahre vor | 2

Beantwortet
Convert structure data into object
Yes.

fast 14 Jahre vor | 0

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

fast 14 Jahre vor | 0

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

fast 14 Jahre vor | 1

| akzeptiert

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

fast 14 Jahre vor | 2

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

fast 14 Jahre vor | 0

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

fast 14 Jahre vor | 1

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

fast 14 Jahre vor | 0

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

fast 14 Jahre vor | 0

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

fast 14 Jahre vor | 1

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

fast 14 Jahre vor | 1

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

fast 14 Jahre vor | 2

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

fast 14 Jahre vor | 1

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

fast 14 Jahre vor | 0

| akzeptiert

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

fast 14 Jahre vor | 0

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

fast 14 Jahre vor | 1

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

fast 14 Jahre vor | 4

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

fast 14 Jahre vor | 0

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

fast 14 Jahre vor | 0

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

fast 14 Jahre vor | 2

| akzeptiert

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

fast 14 Jahre vor | 0

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

fast 14 Jahre vor | 0

| akzeptiert

Mehr laden