已回答
Sound File/Split Wave and Analysis
I am assuming that you want to separate the vector “y” into 8 segments with 1560 samples each. This may be directly indexed from...

5 years 前 | 1

| 已接受

已回答
function checkImageAndNetworkChannelSizes
Here are a few pointers which may be of help: The function “ndims()” ignores all the trailing singleton dimensions of the inpu...

5 years 前 | 0

已回答
data Augmentation for resizing images differently to reduce overfitting
“RandXTranslation” and “RandYTranslation” are name-value pairs used to indicate the horizontal and vertical translations to be a...

5 years 前 | 0

已回答
How to generate a heat map using imported data with (x,y, z as color)
You may use the following syntax to create the heat map. h = heatmap(tbl,xvar,yvar,'ColorVariable',cvar)  where “tbl” is t...

5 years 前 | 0

已回答
Harmonics of Fourier series
The following code may help you to plot the first, 3rd and fifth harmonics of the signal t = 0:0.1:4*pi; numTerms = 3; ...

5 years 前 | 1

已回答
For loop only saving my last run
Here are a few pointers which may help with your situation: As per the code given above each iteration of the for loop causes ...

5 years 前 | 0

已回答
how do you take the mean across columns but for singular row in a 960x31 array
The following documentation link may help you to get a better understanding about how to perform averaging operation in MATLAB ...

5 years 前 | 0

已回答
Data Augmentation not working
As per the MATLAB documentation for “imageDataAugmenter”, the augmented images are not saved to memory. So, the size of “augimds...

5 years 前 | 1

| 已接受

已回答
Transfer function MIMO in simulink
Here are a few pointers which may be of help to you in implementing the transfer function in Simulink The following code may be...

5 years 前 | 0

已回答
How to substitute symbolic Jacobian of a multivariate function, D(f)(x)?
Please go through the following MATLAB Answer which addresses a similar issue https://www.mathworks.com/matlabcentral/answers/...

5 years 前 | 0

已回答
Symbolic array summation in MATLAB
Each iteration of the for loop in the above code creates a new symbolic function "ss" which creates three different expressions....

5 years 前 | 0

| 已接受

已回答
Need to plot 10 db return loss fractional bandwidth of a dipole antenna
I am assuming that the value of resonant frequency is 72 MHz instead of 72 Hz since the range of frequencies specified is from 2...

5 years 前 | 0

| 已接受

已回答
classification using decision tree
I am assuming that there may be some problem with the file names as the file ‘ECGFiveDays_TRAIN.xlsx’ contains only 23 records a...

5 years 前 | 1

| 已接受

已回答
Gabor filter for array
I am assuming that you are trying to give vectors as inputs to the “imgaborfilt()” function. This may not be possible as the fun...

5 years 前 | 0

已回答
Gaussian using fspecial('gaussian',h,s)
The “fspecial('gaussian',h,s)” returns a circularly symmetric gaussian function of size h*h. Since the value of h is updated in ...

5 years 前 | 0

已回答
isolating certain x values for barplot from an undefined variable
My understanding is that you want to extract values from the “x” for which the ‘trial’ variable is free. To this end, you may us...

5 years 前 | 0

| 已接受

已回答
Invalid training data: The output size of the last layer does not match the response size
This issue arises due to size mismatch between the ground truth and the network output and may be resolved by setting the “Paddi...

5 years 前 | 1

| 已接受

已回答
How can I write this equation into MATLAB script
Symbolic Math Toolbox may be used to implement the above equation in MATLAB. Here are a few suggestions which may be helpful in ...

5 years 前 | 1

已回答
mfilt.firtdecim to dsp.FIRDecimator
Please make use of the following code snippet to set the above mentioned properties in dsp.FIRDecimator object. Hd = dsp.FIR...

5 years 前 | 0

已回答
trying to compute Riemann's prime counting function J(x)
Here are a few pointers which may help with resolving the issue: The second term in the Reimann’s function is computed by taki...

5 years 前 | 0

已回答
Using awgn and snr functions in matlab
Here are a few pointers which may be able to help you. Since SNR is the ratio of Signal Power to noise power it should be comp...

5 years 前 | 0

| 已接受

已回答
Not Enough Input Arguments when trying to pass two variables as undefined
Here are a few pointers which may help in solving this issue: Currently the numerical integration function in MATLAB accepts o...

5 years 前 | 0

已回答
Append rows to .mat file
I understand that you want to add the files present in the folder ‘file_1’ into a single “. mat” file. You may use the following...

5 years 前 | 0

| 已接受

已回答
Deconvolution of fluorescence spectra
I am assuming that you want to create an algorithm which can automatically determine the optimal number of Gaussian components n...

5 years 前 | 1

| 已接受

已回答
hi, I have a time series data,I want to find first standard deviation array and second standard deviation array,using a standard deviation window,but I am getting errors.
I am assuming that you want to calculate the moving standard deviation of a time series data. Here are a few suggestions about...

5 years 前 | 0

| 已接受

已回答
Doubts about cross-validation
I am assuming that you want to have some clarification regarding the cross-validation syntax in KNN and SVM KNN Classifier m...

5 years 前 | 0

| 已接受

已回答
Simulate Transmission using dsp.DigitalUpConverter and dsp.DigitalDownConverter
Here are a few pointers which may be able to help you. The baseband signal obtained after decimation contains some spurious si...

5 years 前 | 0

| 已接受

已回答
How to convert the text file (1x290400) to image as shown as below?
I am assuming that you want to create a montage for the given dataset. You may make use of the above code provided by Walter Rob...

5 years 前 | 1

| 已接受

已回答
Cannot find solution Of 4th order ODE using dsolve: Warning: Unable to find explicit solution.
I am assuming here that you want to form an analytical solution to the given 4th order ODE. It may not be considered a good prac...

5 years 前 | 1

| 已接受

已解决


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

5 years 前

加载更多