답변 있음
Shifting a signal to the right or left
x = 1:5 shift = 3 x = circshift(x,shift) N = numel(x) ix = (1:N) - shift tf = ix < 1 | ix > N x(tf) = 0

4년 초과 전 | 4

답변 있음
How to make a matrix with the entries being the number of even indices of that entry?
help meshgrid help rem

4년 초과 전 | 0

답변 있음
Could anyone help me to solve the issue.
ix = find(abs(diff(A)) < YourThreshold, 1, 'first') % maybe you want to add + 1 B(ix:end) = B(ix)

4년 초과 전 | 0

답변 있음
How can I keep the highest N% values of a data set?
Use MAXK: Y = maxk(X, ceil(N * numel(X) / 100))

4년 초과 전 | 1

| 수락됨

답변 있음
Function calculating distance between pixels in 1x1x3 arrays
The function you found is rather badly coded ... Another expression for "calculating a distance" is "taking the norm". Matlab h...

4년 초과 전 | 1

| 수락됨

답변 있음
how to extend the writing of the comments ?
You can set this in the preferences for the editor/debugger. Look for the Right-hand text limit.

4년 초과 전 | 2

| 수락됨

답변 있음
Best way to calculate the determinants of a series of matrices?
Elaborating on the answers using arrayfun, you can avoid the multiple squeeze operations by permuting the dimension order first:...

4년 초과 전 | 0

답변 있음
Fill an array with different size vectors
A=[1,2,3,4]; B=[5,6]; C=[7,8,9]; [ARRAY, tf] = padcat(A,B,C) % pad with NaNs ARRAY(~tf) = 0 % replace those NaNs with zeros ...

4년 초과 전 | 0

답변 있음
add new rows to a Matrix
Despite its simple appearance, this is not a trivial task, for which I created my insertrows function A = randperm(10).' B = i...

4년 초과 전 | 0

답변 있음
reduce rows of a due to b
You can simply use setdiff with the rows option ... c = setdiff(a,b,'rows')

4년 초과 전 | 0

답변 있음
exclude values of a matrix inside a for loop
you can replace the outliers by NaN before the loop and then use nanmax and nansum in your calculations

4년 초과 전 | 0

| 수락됨

답변 있음
Find unique or duplicate cells in cell array of chars
A = {{'A', 'B', 'C'}, {'C', 'D', 'E'}, {'A', 'B', 'C'}, {'C', 'B', 'A'}} N = arrayfun(@(k) sum(arrayfun(@(j) isequal(A{k}, A{j}...

4년 초과 전 | 2

| 수락됨

답변 있음
How to compare two vector with different dimension
I assume the elements of x and y are linked? Why is the first element of (x2,y2) than not in the list of coordinaties (x1,y1)? I...

4년 초과 전 | 0

답변 있음
To generate alternate 0's and 1's
bitget(repelem(0:numel(A)-1, A), 1) [update] I modified my original but erroneous answer bitget(repelem(1:numel(A), A), 2). In ...

4년 초과 전 | 1

답변 있음
Combine three matrices (every other column)
Or, as a one-liner, using left-hand indexing: % some test data A = cumsum(ones(5,4),2), B = 10 * A, C = 10 * B % left-hand in...

4년 초과 전 | 0

| 수락됨

답변 있음
Combine three matrices (every other column)
Assuming matrices A, B and C all have the same N-by-M size: % some test data A = cumsum(ones(5,4),2) ; B = 10 * A ; C = 10 * B...

4년 초과 전 | 0

답변 있음
Calculate statistical parameters from certain rows of a matrix
help grpstats help accumarray

4년 초과 전 | 0

답변 있음
How to convert a structure array into vector
Why on earth store scalar values like that? Why not have a simple, highly efficient M-by-N matrix, rather than a cumbersome M-by...

4년 초과 전 | 0

답변 있음
For loop within for loop
In recent ML versions there is no need for meshgrid or so. The plus syntax will expand the vectors :-) % a smaller example n =...

4년 초과 전 | 1

답변 있음
Average of matrix element
One easy option A = [10 20 30 40] B = cumsum(A) ./ (1:numel(A))

4년 초과 전 | 0

답변 있음
Extracting and sorting data in a column
This works for both an even or an odd number of elements: N = 11 ; % odd Mx = randi(10, N, 1) M2 = accumarray(ceil((1:numel(M...

4년 초과 전 | 0

답변 있음
inefficient loop to vertically concatenate tables
You can apply comma-separated list expansion to tables too, so this one-liner should work. tableBig = cat(1, output{:,2})

4년 초과 전 | 1

| 수락됨

답변 있음
Why is the mean of value of gaussian white noise not zero?
The numbers are randomly drawn from a normal distribution. Although this underlyin distribution has a mean of 0 and a standard d...

4년 초과 전 | 0

| 수락됨

답변 있음
How to segment an array to different parts?
First of all, do not create separate variabeles for things that are related. A solution using cell arrays (like Kalyan does in h...

4년 초과 전 | 1

답변 있음
convert an array into its counting sequence..
This is called run-length encoding, for which there are very efficient functions available on the File Exchange. https://uk.mat...

4년 초과 전 | 0

답변 있음
How can I store a matrix of varying size in each iteration of a for loop?
Since T and Y are related for a specific value of rho, a struct array is useful here. rho_range = 500:100:1000 ; for k = 1:num...

4년 초과 전 | 0

| 수락됨

답변 있음
Calculate mean values of specific (but dynamic) intervals
% interval and value are the relevant columns of your data matrix interval = data(:,3) value = data(:,2) % find the sections ...

4년 초과 전 | 0

| 수락됨

답변 있음
Counting the Same Occurance of a row string
A solution with less calls to unique: P = {'ADS','µSOIC8';'AVX','0603';'AVX','0603';'AVX','0603';'ELN','';'EPC','0603';'EPC','0...

4년 초과 전 | 0

답변 있음
Randomly select an element from a vector satisfying a condition
This is a two-step process: create an intermediate array with all elements of X satisfying your condition select a single elem...

4년 초과 전 | 0

답변 있음
Count the adjacent same elements in a vector
This is call run-length encoding, for which you can find excellent function on the File exchange. For instance, [shameless self ...

4년 초과 전 | 1

더 보기