Answered
Any way to use British spellings for function calls and arguments?
https://blogs.mathworks.com/loren/2016/04/01/the-queens-matlab/ I took this seriously at first and was appalled! Not because I...

4 years ago | 2

Answered
Matlab data classes advantages
https://uk.mathworks.com/help/matlab/matlab_prog/fundamental-matlab-classes.html In basic terms obviously floating point (doubl...

4 years ago | 0

Answered
How to concatenate 2 cell arrays containing strings?
vertcat( x{:} )

4 years ago | 0

| accepted

Answered
Why do I need to declare a variable inside a nested 'for' loop?
You are referring to it on the right-hand side of the equation as well as on the left. First time round it does not exist yet s...

4 years ago | 1

| accepted

Answered
signal processing (segmentation in time domain)
sig1 = sig( t >= 0.34 && t <= 4 ); sig2 = sig( t >= 6 && t <= 8.5 ); If you also need the t vector then apply it similarly. J...

4 years ago | 0

| accepted

Answered
finding inverse exponential value
If i and j are pixel values then you must have an image to which they are applied, e.g. im, in which case simply exp( -im(i,j) ...

4 years ago | 0

Answered
Reference to non-existent field error
exist('handles.mystructdata') does not work for struct fields. isfield( handles, 'mystructdata' ) is what you should use to c...

4 years ago | 1

| accepted

Answered
How to replace values of certain rows in a matrix?
a( [2 3], : ) = repmat( b, 2, 1 ) A bit more generally: indicesToReplace = [2 3]; a( [2 3], : ) = repmat( b, indicesToReplace...

4 years ago | 0

Answered
FFT step by step help
The lpad part is a little suspicious. If you have an odd length of signal it will not work as is. Apart from that though: xdf...

4 years ago | 1

| accepted

Answered
Index exceeds the number of array elements
[A, index] = unique (A); replaces what was in A with the result of unique (i.e. all the non-unique values removed) So indexing...

4 years ago | 0

Answered
Get position when using uicontextmenu
I use code like this to position my context menu under the cursor on an axes, though if you already have the figure handle at th...

4 years ago | 0

Answered
replace duplicate value by 0 in matrix or vector
[C,ia] = unique( b ); b( setdiff( 1:numel(b), ia ) ) = 0;

4 years ago | 1

Answered
Unrecognized function or variable 'axes34_CreateFcn'.
Unless you have explicitly created one axes don't have a createFcn set by default, so I assume you must have asked it to create ...

4 years ago | 0

Answered
disp function error in matlab coder
disp is not supported by Coder. sprintf should work though.

4 years ago | 0

Answered
How to create empty matrix in matlab?
myMatrix = cell( 10 ); would create a 10x10 cell array. If all your images are the same size though you'd be better off with t...

4 years ago | 1

Answered
How can I display a specific frame in my image series ?
image10 = allImages( :, :, 10 ); images2_5 = double( allImages( :, : [2 5] ) ); image2_minusImage5 = diff( images2_5, [], 3 );...

4 years ago | 0

| accepted

Answered
extract logical locations that match array
B .* A would seem to give what you want

4 years ago | 0

| accepted

Answered
how to select the desired range of each dimension from the 3d array?
new_precipitation = precipitation( 1400:1439, 500:519, 700:900 ) would create what you ask for though it will be 1 bigger in ea...

4 years ago | 0

| accepted

Answered
Convert Z dimension to X dimension
myArray(:) will do for that kind of reshape, where myArray is obviously the array you start with.

4 years ago | 0

| accepted

Answered
Initial centroids selection - Kmeans
doc kmeans shows the idx = kmeans(X,k,Name,Value) function signature. If you look at the options for 'Name', 'Value' pairs y...

4 years ago | 0

| accepted

Answered
[DISCONTINUED] MATLAB Answers Wish-list #5 (and bug reports)
Has there been any further thought on changing what is considered a compulsory field for users asking a question? Title, body a...

4 years ago | 4

Answered
How to define range using a variable in xlsread?
doc sprintf can create a string out of variables, e.g. columnStr = 'B'; startRow = 50; endRow = 50; sprintf( '%s%i:EHI%i', ...

4 years ago | 0

| accepted

Answered
SOM codebook vectors output
net.IW{1} will give you the codebook vectors/weights. For example: x = simplecluster_dataset; net = selforgmap([8 8]); net ...

4 years ago | 0

| accepted

Answered
How to automatically put the asked values in function by script?
You would have to define a function that takes two arguments (or an array of inputs to add), e.g. for an example of a fixed two ...

4 years ago | 0

Answered
Dimensions of arrays being concatenated are not consistent.
Results_Values=[Amp',N',T',[velocity NaN].'];

4 years ago | 1

| accepted

Answered
Could anyone help me how to store the result together in single matrix.
Making minimal changes to your code: B=[1 2; 1 3; 2 5; 2 4; 3 5; 4 6; ...

4 years ago | 0

| accepted

Answered
How to generate random matrix from another one?
newMatrix = reshape( oldMatrix( randperm( numel( oldMatrix ) ) ), size( oldMatrix ) ); should work, though I'm sure there are n...

4 years ago | 0

Answered
Array indices must be positive integers or logical values
for i = length(Mag) doesn't make sense as this will just evaluate to a scalar. I don't see how this would be the source of you...

4 years ago | 0

| accepted

Answered
Put label in colorbar
The label object should have a position that you can edit. The rotation of 270 rather than 90 moves it inside the tick labels f...

4 years ago | 6

| accepted

Answered
Determination of data points in each cluster of K-means algorithm
accumarray( idx, 1 );

4 years ago | 1

Load more