已回答
How do I code for a buttom grpup using the tags i made for them
Hi, From the question I assume you have the GUI ready for displaying original image to a UI Axes in App Designer. For plotting...

4 years 前 | 0

已回答
Using loop to read column from excel sheet
Hi, You can use readmatrix instead of xlsread. readmatrix will return a matrix from the ‘.xlsx’ file that will contain column ...

4 years 前 | 2

| 已接受

已回答
Uni told us that we have free MatLab till 30.6.2020 but it says: Unfortunately, we were unable to find a match for a MATLAB and Simulink Campus-Wide License based on the email address you provided.
Hi, You can contact your sales representative to get detailed understanding about your license terms. If you don't know who yo...

4 years 前 | 2

已回答
More efficient way of analyzing the Fourier transformation of an image?
Hi, From the code I see that ang for loop doesn’t seems to have dependency between the iterations on the data values, so maybe...

4 years 前 | 1

| 已接受

已回答
How is the quality of audio file when PSNR is more than 48?
Hi, In the code you have mentioned that PSNR = 20*log10(MAXVAL/MSE); This means PSNR = 20*log10(MAXVAL) - 20*log10(MSE)...

4 years 前 | 0

| 已接受

已回答
Cumulative distribution fitting with an equation
Hi, From the question I assume you first want to fit a distribution to the data that you have attached according to parametric...

4 years 前 | 1

已回答
How can I run the distributionfitter automatically?
Hi, The distributionFitter app is essentially used for fitting distribution to the data that you have. You can get the same pr...

4 years 前 | 1

已回答
How to convert optical flow to feature matrix in videos
Hi, I am unsure about what you want to classify in the video using the optical flow estimation workflow. As per my understandi...

4 years 前 | 1

| 已接受

已回答
Fresnel diffraction at an angle
Hi, I assume the above code is taken from Fresnel Propagation using the Transfer function File Exchange Submission. Since I di...

4 years 前 | 0

已回答
Find three in a row
Hi, You can take a look at Image Analyst Answer for creating a random number generator. As from the question I assume you a...

4 years 前 | 0

已回答
Extract information from Label images labeled with Image Labeler and use it in semantic segmentation deep learning
Hi, Let me clear the specific doubts. I am assuming the square you are mentioning must be rectangle. Since rectangle is used...

4 years 前 | 0

| 已接受

已回答
How to write a phase plane in matlab?
Hi, I have compiled some code which essentially plot the same figure you have. For plotting the straight lines, you must choos...

4 years 前 | 2

| 已接受

已回答
DeepESNs with multiple sub-reservoirs
Hi, There is a submission on File Exchange DeepESN which give a good starting point to code the tweak you want in Deep Echo St...

4 years 前 | 0

| 已接受

已回答
How to get probabilities of each class which is classified with RUSBoost for an imbalanced data set
Hi, The reason behind predict not returning scores as probability estimates is because the ‘RUSBoost’ algorithm used in the mo...

4 years 前 | 1

| 已接受

已回答
3D Point Clouds: "findPointsInROI" and "select" not working
Hi, From the file I can see that the point cloud that is read is essentially an organized point cloud. So, it is a single poin...

4 years 前 | 1

| 已接受

已回答
I am trying to find the dominant poles without using a for loop...
Hi, I don’t see any for loop in the code that is provided with the question, however if there is a for loop you can always wri...

4 years 前 | 0

已回答
Is there anything about face emotion recognition?
Hi, I found a submission on File Exchange Face, Age and Emotion Detection that essentially use pretrained network capabilities...

4 years 前 | 2

| 已接受

已回答
How to determine kinetic parameters using nonlinear least square algorithm?
Hi, You may look for lsqnonlin as a potential function for solving the nonlinear least square problem as here you have two kno...

4 years 前 | 0

已回答
Borld fonts in insertText?
Hi, As of now bold font is not supported in insertText however, you may increase the font size by mentioning a greater value o...

4 years 前 | 1

已回答
cast() convert image to struct
Hi, The A returned after using dicomwrite tell about the metadata that is used to generate the dicom file. As you can see by r...

4 years 前 | 0

已回答
Error solving system of inequalities
Hi, As mentioned, here by Star Strider you can include 'IgnoreAnalyticConstraints' kvalue = solve(C(:,1)>0,k,'ReturnCondition...

4 years 前 | 0

| 已接受

已回答
Creat a matrix based off an if statement
Hi, From the functionality of the code I see a better way to write the code. Here I see array indexing can be used to avoid lo...

4 years 前 | 1

已回答
Ridge Regression Code error message
Hi, From the code I think the cvpartition that is created should have ‘n’ number of observation instead of 23. That is why the...

4 years 前 | 1

已回答
How can I plot this amplification diagram?
Hi, As per my understanding you are trying to plot two variables Ω and |A| based on the fo value that you want to give paramet...

4 years 前 | 0

已回答
how to find similar image from folder 1 to folder2
Hi, From the question I understand that you need to find closest image for each image in ‘folder1’ in ‘folder2’. As mentioned ...

4 years 前 | 1

已解决


Project Euler: Problem 1, Multiples of 3 and 5
If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23...

4 years 前

已解决


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

4 years 前

已解决


Magic is simple (for beginners)
Determine for a magic square of order n, the magic sum m. For example m=15 for a magic square of order 3.

4 years 前

已解决


Make a random, non-repeating vector.
This is a basic MATLAB operation. It is for instructional purposes. --- If you want to get a random permutation of integer...

4 years 前

已解决


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

4 years 前

加载更多