Beantwortet
Index exceeds number of array elements in for loop
Error message providing sufficient reason for error As you are trying to access RTa upto n+12, here n is max length(RTa). Ex...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
loading variables from command window to a workspace
"loading variables from command window to a workspace" Assign any variable name during execution, it's automaticacly load the v...

mehr als 5 Jahre vor | 0

| akzeptiert

Gelöst


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

mehr als 5 Jahre vor

Gelöst


Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

mehr als 5 Jahre vor

Gelöst


Return the largest number that is adjacent to a zero
This example comes from Steve Eddins' blog: <http://blogs.mathworks.com/steve/2009/05/27/learning-lessons-from-a-one-liner/ Lear...

mehr als 5 Jahre vor

Beantwortet
K-means implementation for matrix A(n x m) that returns a vector of length n with values from 1 to k, depending on which cluster the vector ended in
kmeans MATLAB Function imsegkmeans https://in.mathworks.com/help/images/ref/imsegkmeans.html

mehr als 5 Jahre vor | 0

Gelöst


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

mehr als 5 Jahre vor

Gelöst


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

mehr als 5 Jahre vor

Gelöst


Create a vector
Create a vector from 0 to n by intervals of 2.

mehr als 5 Jahre vor

Gelöst


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

mehr als 5 Jahre vor

Gelöst


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

mehr als 5 Jahre vor

Gelöst


Find max
Find the maximum value of a given vector or matrix.

mehr als 5 Jahre vor

Gelöst


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

mehr als 5 Jahre vor

Gelöst


Inner product of two vectors
Find the inner product of two vectors.

mehr als 5 Jahre vor

Beantwortet
How to merge data from different time line?
Is that? merge_t=sort([time_1_x_axes,time_2_x_axes]); new_t=merge_t(1:2:end);

mehr als 5 Jahre vor | 0

Beantwortet
PSNR CALCULATING MEDIAN FILTER GAUSSIAN FİLTER
"% my aim is to get which filter is successful psnr values on this salt and pepper noise." 2nd One If you check the format of ...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
how to calculate area region growing
B =A+J;

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
How to extract highest intensity area from a greyscale spectrogram?
Apply thresholding to cluster the image into two segment, certain higher pixel and lower value pixels. Get the largest blob as ...

mehr als 5 Jahre vor | 1

Gelöst


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

mehr als 5 Jahre vor

Gelöst


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

mehr als 5 Jahre vor

Gelöst


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

mehr als 5 Jahre vor

Gelöst


Find common elements in matrix rows
Given a matrix, find all elements that exist in every row. For example, given A = 1 2 3 5 9 2 5 9 3 2 5 9 ...

mehr als 5 Jahre vor

Beantwortet
change matrix form and arrangement
reshape(A1,[2,3])

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Delete Cells from Cell Array, when size is less than 50% of biggest cell
Here one way: The given cell data a={[1,2;3,4;5,6;7,8],[9,10;11,12],[13,14;15,16;17,18]} Check data a = 1×3 cell array ...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Looping until threshold is met
You have to initialize "error" before the loop. The initial value must be less than a threshold value as defined. Also make sure...

mehr als 5 Jahre vor | 0

Beantwortet
Generating two Random sequences
Hint: One Way, you can do multiple ways data=repmat([1,-1],[1,50]) seq1=data(randperm(100)); seq2=data(randperm(100)); Fore ...

mehr als 5 Jahre vor | 1

Beantwortet
convert array dimensions 12 channels
reshape(data,[50,1,12])

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
how can I divide the vector into parts
data_cell=mat2cell(data,1,[20*ones(1,3276),16]) Result, save the all sub array data in cell array having cell elements 3227, wh...

mehr als 5 Jahre vor | 0

| akzeptiert

Gelöst


Target sorting
Sort the given list of numbers |a| according to how far away each element is from the target value |t|. The result should return...

mehr als 5 Jahre vor

Gelöst


Verify Law of Large Numbers
If a large number of fair N-sided dice are rolled, the average of the simulated rolls is likely to be close to the mean of 1,2,....

mehr als 5 Jahre vor

Mehr laden