Answered
How to scale a graph
Refer to Specify Axis Limits and specify the limits for X and Y axis.

6 years ago | 0

Answered
How can I give a neural network multidimensional input data?
From the above information, I think the dimension of input 2 is also 10x 600. Then you can create a network with imageInputLayer...

6 years ago | 0

Answered
Neural Net Fitting, NARX
Refer to the documentation of narnet. You can prepare the data using preparets.

6 years ago | 0

| accepted

Answered
Matlab: How to convert matrix columns to a numeric cell array?
A matrix can't have an empty value. The whole array itself should be empty. Therefore from the above mentioned code, the value ...

6 years ago | 0

Answered
downloading newest file from the web folder
Refer to websave and Download Web Page and Files

6 years ago | 0

Answered
Modifying unetLayers-architecture for distance map regression
In addition to above replace the 'Final-ConvolutionLayer' with new convolution2dLayer having filter size 1 and number of filters...

6 years ago | 0

| accepted

Answered
How to test neural network trained model?
In "Test the Network section" from the above code of yours, replace Input_Signals with new test set and Labels with the labels o...

6 years ago | 0

Answered
Time-series prediction using another time series
Refer to Shallow Neural Network Time-Series Prediction and Modeling and use Nonlinear Input-Output.

6 years ago | 0

Answered
How To find The x intercept
Refer to Specify Axis Limits and specify the limits for X and Y axis.

6 years ago | 0

Answered
How to implement a neural network in matlab?
To get started you can refer to Multilayer Shallow Neural Networks and Backpropagation Training. Then you can try defining the ...

6 years ago | 0

| accepted

Answered
how to add Text Analytics Toolbox
Refer to the following: <https://in.mathworks.com/help/matlab/matlab_env/get-add-ons.html Get and Manage Add-Ons>

6 years ago | 0

Answered
Set specific values in an array to zero
Based on the above information and code I'm assuming that the values of the matrix elems are indices of nodes UY (1<=elems(i,j)<...

6 years ago | 0

| accepted

Answered
use trainnetwork for normal regression
The outputSize argument for the fullyConnectedLayer before the regressionLayer must be 1 as the number of ouputs for your regres...

6 years ago | 0

| accepted

Answered
how can i download the Communications Toolbox in the library in simulink?
Refer to the following: Get and Manage Add-Ons

6 years ago | 0

Answered
How do i approximate non-linear function with neural networks and work with performance plot?
The net1 from above has the function divideFcn as Object property. This property defines the data division function to be used w...

6 years ago | 0

| accepted

Answered
Train a Neural Network with multidimensional matrices
If you are thinking of a fullyconnected network then use the imageInputLayer for giving the input to the network and use the div...

6 years ago | 0

Answered
How to understand which variables are redundant in a neural network classification problem
One way is to find correlation between the variables. Refer to corr, Correlation and correlation functions in MATLAB.

6 years ago | 0

| accepted

Answered
Add marker on selected Peaks of a plot with multiple curves
Refer to LineSpec, Line Properties and mention the appropriate argument for the semilogx function

6 years ago | 0

Answered
Copy/Paste a Segment in the image
The following answers might help you: how to get the roi of an image by masking, Masking out Image area using Binary Mask

6 years ago | 0

Answered
error with classes in network classification layer
Please refer to the following workflow: Create R-CNN Object Detection Network. The total number of classes the RCNNdetector sho...

6 years ago | 1

| accepted

Answered
VALIDATION CRITERION MET DURING TRAINING OF VGG19
I think you have mentioned some function for the 'OutputFcn' Name-Value pair argument in trainingOptions and this function stopp...

6 years ago | 0

Answered
Imported keras model gives a different(wrong) output in MATLAB
layers = importKerasLayers('testDenseReshapeConvLayers.h5', 'ImportWeights', true); W1 = layers(5).Weights' b1 = layers(5).Bia...

6 years ago | 0

Answered
Unable to use checkpoints for prediction/detection
YOLOv2 detector having batch normalization layers cannot be used for detection when loaded from a saved checkpoint. This is a kn...

6 years ago | 0

| accepted

Answered
Overlay a image with plot
Below are some suggestions: (only for the above code) (line 14 - 17) Instead of using subplots use figure and save the plot (...

6 years ago | 0

| accepted

Answered
euler function that you can reuse with different values?
In your function euler, check for the following: In line 3 it should be "t=t0:h:tN;" In line 9 why are you changing the vector...

6 years ago | 0

Answered
Hi . I am new to DNN. I use deep neural network for binary classification but returns all zeros or ones.
Seems that your dataset is unbalanced, count of sequences with label 0 is 59695 and with label 1 is 94226. This could make the l...

6 years ago | 0

Answered
error while transferring weights of a trained CNN network to an empty CNN network
If the function createUpsampleTransponseConvLayer is the helper function from the example Prepare Datastore for Image-to-Image R...

6 years ago | 0

| accepted

Answered
How to change text in textfile with matlab?
Refer to the documentation of fileread & regexp and Export to Text Data Files with Low-Level I/O. The following code might help...

6 years ago | 0

| accepted

Answered
What is the most efficient way to create a large image database from MATLAB plots or figures for use in Deep Learning?
The following suggestions might help you: Use parfor instead of the regular for loop, this would save time. While loading the ...

6 years ago | 0

| accepted

Answered
Overlapping time interval with points WITHOUT loop
If you are thinking of using arrayfun, then the following code might help you, startBin = [1 10 25 37]; endBin = [20 30 40 45]...

6 years ago | 0

Load more