Answered
How to use error bars in scatter plot?
If you want the errorbars to appear on the scattered points then change your plotting code to the following: plot(yc_front,f_fr...

5 years ago | 0

Answered
Use of tight_subplot for plotting graphs from table
You can make use of TileSpacing Name-Value pair argument of tiledlayout. For more information you can refer to the hyperlinks an...

5 years ago | 0

Answered
Plot with smaller variation in input argument under user defined function?
"hold on is not working when I execute this code": It's probably because the the value of del_x is very small and it is difficul...

5 years ago | 0

Answered
What is the data "YTrain" in the Matlab CNN Regression example?
As you have mentioned already, the images in the subfolders (0-9) contain the Input images of both Training (XTrain) and Validat...

5 years ago | 0

| accepted

Answered
shuffle and partition in training, validation and testing of a multi-label combined dataset
You can refer to the documentation of the functions partition & shuffle. For the list of other functions supported by the Combin...

5 years ago | 0

Answered
Reduce Matrix Dimensions for 5D-Data
You can make use of the functions permute and reshape as follows: % M is a matrix of size a x b x c x d x e Mp = permute(M,[1 ...

5 years ago | 0

| accepted

Answered
グラフの目盛りを非表示にする方法
By the term "scale" in the above question if you are referring to the Tick marks on the axes then you can make them disappear by...

5 years ago | 1

| accepted

Answered
How to find a vector containing mean values of the corresponding cells?
You can refer to the documentation of for, mean and write the code. Seems that the question is not completely clear and based o...

5 years ago | 0

Answered
How to build a CNN model to classify motor imagery tasks from EEG signals?
You can refer to Classify ECG Signals Using Long Short-Term Memory Networks, Modulation Classification with Deep Learning & Topi...

5 years ago | 0

Answered
training "large scale" neural network
You can refer to the following documentation pages: Choose a Multilayer Neural Network Training Function, Improve Shallow Neural...

5 years ago | 0

Answered
interrupted axis and plotting non values
As per my understanding from your question, I'm replicating the said information using the below code: x1 = 1:5; y1 = 1:5; x2...

5 years ago | 0

Answered
ImageInputLayer Error in deep learning toolbox
In case of layerGraph based approach we use trainNetwork to train the network and this function takes the entire data for the tr...

5 years ago | 2

| accepted

Answered
How to calculate confusion matrix , accuracy and precision
You can refer to the following functions available in MATLAB to compute confusion matrix: Functions for computing "confusion mat...

5 years ago | 3

Answered
How to use 3d numeric data as an input for CNN?
Refer to List of Deep Learning Layers to get an idea of all deep learning layers available in MATLAB. You can start by using ima...

5 years ago | 0

Answered
I have started using Deep Learning Toolbox and getting error "Error using trainNetwork (line 183) Number of observations in X and Y disagree."
As you are using the following syntax of the trainNetwork function: net = trainNetwork(X,Y,layers,options), you can refer to the...

5 years ago | 0

Answered
How do I add features to a fully connected layer in a MATLAB neural network?
You can write your own Custom Layer and place it before the fullyConnectedLayer in order to achieve the above funcitonality. To ...

5 years ago | 0

Answered
CNN Layers: high pass filters and truncation layer
You can write your own Custom Layer using Deep Learning Toolbox in MATLAB. To get started you can refer to Define Custom Deep Le...

5 years ago | 0

| accepted

Answered
training a CNN with colors
By single colored images I'm assuming that you are referring to single channel (red or green or blue) of RGB (Truecolor) Images....

5 years ago | 0

Answered
Convolution outside training network
You can use the dlconv operator. Refer to its documentation for more information. For other Deep Learning Operators refer to Dee...

5 years ago | 0

| accepted

Answered
Utilization of pretrained .mat CNN model
You can refer to exportONNXNetwork, References & Deep Learning Import and Export.

5 years ago | 0

Answered
セマンティックセグメンテーションにおける重みづけの方法
Just provide your valid desired value for the ' ClassWeights' name-value pair arguments while creating the pixelClassificationLa...

5 years ago | 0

| accepted

Answered
テストデータとトレーニングデータの指定
Change the outputFolder variable to the location of your dataset: outputFolder = 'path to your dataset'; Let's say that within...

5 years ago | 0

| accepted

Answered
how to manage the input data to a neural network (time series)
You can refer to the following documentation pages: Choose Neural Network Input-Output Processing Functions, Configure Shallow N...

5 years ago | 0

Answered
plotting help with loop and complex matrix
Store the output of the function pfield in a variable and use it. You can try changing your for loop code as follows: cur = [];...

5 years ago | 1

Answered
Performing LSTM Regression on matrices without reshaping matrix elements into sequence of vectors, or performing LSTM Regression on 3-D data?
You can define your deep neural network and use the following trainNetwork syntax: net = trainNetwork(sequences,Y,layers,options...

5 years ago | 0

Answered
Plot bei steigendem Werten grün und bei fallenden Werten rot (Different coulored plot: increasing and decreasing)
Write a for loop iterating over the values of the array v, inside it check if previous element is less than or greater than the ...

5 years ago | 0

| accepted

Answered
Error in nexttile after adding colorbar for whole tiledlayout
You can try storing the axes when you create a new tile and use the stored axes later as follows: f = figure; t = tiledlayout(...

5 years ago | 0

Answered
Looping Issues in MATLAB- immediate help requested
If for all values of p the sizes of all the matrices of ESdynamic are same and sizes of all the matrices of VaRdynamic are same ...

5 years ago | 0

Answered
매트랩 scatter plot 원점을 지정할수 없나요?
You can refer to the documentation of Rulers in the Axes Properties and also axis.

5 years ago | 0

Answered
NFTOOL: fitting LARGE amounts of data
The following are some suggestions based on my knowledge: In general the dataset is splitted as follows: 70% for training, 15% ...

5 years ago | 0

Load more