A répondu
How to convert the mean value of an integer matrix to a double
Are regionA and regionB allocated as integers? It seems likely he final assignment that is casting them back to integers. Sinc...

presque 8 ans il y a | 0

| A accepté

A répondu
How to limit rounding in matrix division
Your last sentence has the answer: your data type is uint8. Dividing a uint8 by a uint8 is going to give you another integer, s...

environ 8 ans il y a | 0

A répondu
How to interpolate for given inputs in a n*m matrix
If I understand your question correctly, it sounds like <http://www.mathworks.com/help/matlab/ref/griddedinterpolant-class.html ...

environ 8 ans il y a | 0

| A accepté

A répondu
Why is MATLAB crashing on medium-to-large matrices?
Does it create a crash log? If so, what's in the log? You can find it using the directions located here: <http://www.mathwo...

environ 8 ans il y a | 0

A répondu
How to realzie iczt use Matlab?
There's not necessarily going to be a straightforward inverse for the Chirp-Z transform unless its parameters define evenly spac...

environ 8 ans il y a | 1

A répondu
How do I reduce this nxmx3 matrix to a (n*m)x3 matrix?
It sounds like you want a combination of <http://www.mathworks.com/help/matlab/ref/permute.html permute> and <http://www.mathwor...

plus de 8 ans il y a | 0

| A accepté

A répondu
Combine datasets of unequal lengths by matching dates
There's a little bit of ambiguity here, but this shouldn't be too hard. What happens when there is no corresponding date from V...

plus de 8 ans il y a | 0

A répondu
Does anyone know how to allocate a vector with datetime elements?
<http://www.mathworks.com/matlabcentral/newsreader/view_thread/338369 This question has appeared before>, but there are two opti...

plus de 8 ans il y a | 10

| A accepté

A répondu
Generate 'k' vectors of unique (non-repetitive) integer random variables in the same range
Will, given that you want integers in the range [-50 50] and are trying to generate 1000 numbers for both A and B, you're not go...

plus de 8 ans il y a | 1

A répondu
what is the initial phase of the signal y=sin(2*pi*x)? zero or -π?
When taking the FFT of an input array, the first value in the resulting output is the <https://en.wikipedia.org/wiki/DC_bias DC ...

plus de 8 ans il y a | 2

| A accepté

A répondu
I have large number of precipitation daily data in a column (for 50 years) for 221 meteorological stations. Now I need to convert it to monthly sum. How can I do that? thanks.
Things like leap days make this a bit tricky, so here are some general steps you might consider: # Create a <http://www.mathw...

plus de 8 ans il y a | 0

A répondu
Valid part of frequency convolution
To answer your question, it's important to note what _type_ of convolution you're doing. If you have two inputs of length N, fo...

plus de 8 ans il y a | 0

A répondu
Deconvolution of Gaussian from Polynomial Function: Axis-symmetry and Vector-Length-Dependence
To answer your first question, the first input to conv on line 33 is not symmetric; this is why your output is not symmetric. ...

plus de 8 ans il y a | 1

| A accepté

A répondu
about FFT and wave packet
You are using different scaling factors for the two expressions; the FFT version is scaled with dx = 0.1963 and the "analytical ...

plus de 8 ans il y a | 0

A répondu
I can't submit support tickets
How have you tried creating the support request? There are several ways you can contact the technical support team: Through the...

presque 9 ans il y a | 1

A répondu
How can I resize the horizontal lineLength in Legend?
When I try this in R2014a, two objects are returned into |textobj|, and the first seems to correspond to the line that is drawn ...

plus de 9 ans il y a | 0

A répondu
Obtaining fundamental frequency of complex signal from Fourier transform
I think the answer depends on what you mean by "looking directly at the magnitude spectrum of the Fourier transform." If what y...

plus de 9 ans il y a | 2

| A accepté

A répondu
imshow error with Matlab 2014a. ... Error using Settings Undefined function or variable 'matlab.internal.getSettingsRoot'. Error in iptgetpref (line 22) s = Settings; Error in imshow (line 234) initial_mag =
This might be a path problem. Try the <http://www.mathworks.com/help/matlab/ref/restoredefaultpath.html |restoredefaultpath|> a...

plus de 9 ans il y a | 2

A répondu
How to find cell IDs attached to points
One way to solve this problem is to construct a sparse matrix |S| such that the element |S(i,j)| is logical |true| if the vertex...

plus de 9 ans il y a | 0

A répondu
How I can use the eig function for nonsymmetric matrices?
The |eig| function does not require any additional options for nonsymmetric matrices. There is an <http://www.mathworks.com/hel...

plus de 9 ans il y a | 0

| A accepté

A répondu
Image analysis on multiple images
You can place the code you are running inside of a function that you write that takes as input the filename of the image that yo...

plus de 9 ans il y a | 1

A répondu
How to construct a binary matrix reporting 1 in case of equal rows of two arrays of different dimensions?
One way to do this without looping would be to exploit the property that two vectors |w| and |v| are equal if and only if ...

plus de 9 ans il y a | 1

A répondu
maximum variable size allowed by the program is exceeded
Without having access to the TIF file that this code is loading, it is difficult to say for sure, but it seems as if the error i...

plus de 9 ans il y a | 0

| A accepté

A répondu
How to plot data in an irregular/non orthogonal grid?
The |mesh| and |surf| functions can take irregularly spaced vector and matrix inputs that define the mesh. However, their input...

plus de 9 ans il y a | 0

A répondu
sparse( ix, jx, sx, rx, cx ) implausibly slow
Using 5 input arguments with the |sparse| command is indeed an efficient way to construct a sparse matrix. However, you most li...

plus de 9 ans il y a | 1

| A accepté

A répondu
How to subtract an (n by m) matrix from an (n by m) by k matrix without looping?
While |bsxfun| is the preferred method for doing this, for the sake of completeness in answering the question you can also use i...

plus de 9 ans il y a | 0

A répondu
In my code, arrayfun slower than for loop
The |arrayfun| function simply applies a given function to each element of the array that you supply. In this sense, |arrayfun| ...

plus de 9 ans il y a | 2

| A accepté

A répondu
circular convolution - why the third argument - what is the use?
The third argument of |cconv| is used to control the length of the result of the convolution. To calculate what would typically...

plus de 9 ans il y a | 0

| A accepté

A répondu
How Can I take 3d image from 3 matrix ( x,y,z) in one step ??
The key to removing the |for| loops from this code is to make use of a different kind of matrix indexing. In addition to row an...

plus de 9 ans il y a | 0

A répondu
apply function with two variables
You should be able to make your code significantly faster by *vectorizing* it (see <http://www.mathworks.com/help/matlab/matlab_...

plus de 9 ans il y a | 1

| A accepté

Charger plus