Solved


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

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Solved


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

6 years ago

Solved


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

6 years ago

Solved


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

6 years ago

Answered
How to centering an binary image
Hi, From the two piece of codes I see you need to create a for loop for fIdx from 1 to 43 and then give each fg2 matrix calcul...

6 years ago | 0

| accepted

Answered
applying impyramid to many images and saving then seperately
Hi, Since it is required to store all the jpg file generated from successive impyramid expansion and reduction, in my opinion ...

6 years ago | 1

Answered
DATA ARRANGEMENT FROM PANEL FORMAT
Hi, I assume you have 28 tables corresponding to 28 years with 5 variables for all 24 countries based on my understanding of p...

6 years ago | 0

| accepted

Answered
Does anybody have an implementation for denoising autoencoder (DAE) in matlab?
Hi, Currently there is no directly implementation of stacked denoising Autoencoder function in MATLAB however you can train an...

6 years ago | 2

| accepted

Answered
stats of trained logistic regression in classification learner app.
Hi, After training the logistic regression model in the Classification Learner App you can export the model to the workspace w...

6 years ago | 2

Answered
Matrix dimensions must agree error
Hi, By running the example, I see that in edge_detect function, img_shift returns same size image that is inputted in it. So t...

6 years ago | 1

Answered
Using the Classification Learner to train a Multinomial Logistic Regression
Hi, Currently Classification Learner App has Decision Trees for multi-class classification problems. As you mentioned mnrfit d...

6 years ago | 0

| accepted

Answered
movmean reduces the dynamic range
Hi, Since movmean is an averaging filter, values that are outliers are removed when the averaging is done over a window, so if...

6 years ago | 1

| accepted

Answered
How can I use BM3D on a sequence of images?
Hi, As far as I know there is no direct function implementing BM3D Algorithm in MATLAB. If you are interested in the implement...

6 years ago | 1

Answered
Iteration and Convergence to zero
Hi, I don’t fully understand the logic implemented here but I think after each iteration you want to check the value of r and ...

6 years ago | 0

Answered
Statistical test used for fixed effects in fitlme function
Hi, As per the understanding from the fixedEffect documentation, the p-value is calculated for the t-statistics which is calcu...

6 years ago | 0

Answered
Image Regression using image datastore
Hi, You can use fileDatastore for reading the text file and converting them into the required array for labels as it’s much ea...

6 years ago | 1

Answered
Filtering a signal out of multiple frequencies without for loop
Hi, There is a similar question which is nicely explained by Star Strider, this can help you implement the multiband filter re...

6 years ago | 0

| accepted

Answered
How to plot graphs to analyze the ANN model?
Hi, From the question I understand that you want to plot all the indices such as MSE (Mean Squared Error), MAE (Mean Absolute ...

6 years ago | 1

Answered
Control output resolution montage R2018b and later
Hi, The above functionality of Resolution change can be achieved using ‘ThumbnailSize’ property of montage function. Since thi...

6 years ago | 1

Answered
How to partition a data set.
Hi, I assume you have dataset in some file format that can be read by any of the datastore mentioned here. The partition funct...

6 years ago | 0

Answered
Wierd performance of pca on Matlab R2019b
Hi, I tried with R2019b release for checking upon the issue. It is working fine; you may look the attached screenshot. You may...

6 years ago | 1

Answered
how can i linearise a data from a excel file (time vs temperature) and then extend the line from plotted data in graph and to find area under the curve
Hi, You may look here for removing sudden spike from plot. It uses median filter for removing noise. You can use interp1 for i...

6 years ago | 1

Answered
Freezing a frame and extracting values
Hi, I am assuming for playing video you are using vision.VideoPlayer. In that you can see the output frame-by-frame using step...

6 years ago | 0

Answered
how to train negative example in faster RCNN model
Hi, From negative examples I assume you mean images in dataset which doesn’t have the objects in it. So, if you are training F...

6 years ago | 0

Answered
imwrite smoothing out .png files
Hi, For converting the 16-bit image to 8-bit image using casting will saturate lot of the values in the matrix. You can use ...

6 years ago | 1

Answered
Feature extraction for pap-smear images
Hi, From the similar question here I can see you are using Image Segmenter App right now for creating ROI labels. This is a go...

6 years ago | 0

| accepted

Load more