답변 있음
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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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; ...

4년 초과 전 | 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 ...

4년 초과 전 | 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 ...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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/...

4년 초과 전 | 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....

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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 ...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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 ...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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...

4년 초과 전 | 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:...

4년 초과 전

더 보기