回答済み
Vector Scope Simulink R2020b
Starting in R2018b the Vector Scope block has been removed. You will have to use the following blocks instead: Time Scope — Vis...

3年以上 前 | 1

回答済み
Simscape not in r2020a
Simscape Onramp is only available starting in MATLAB R2021a. You can download the latest version of MATLAB R2021a and access the...

3年以上 前 | 0

回答済み
Training CNN on training set with different numbers of images in the training set
You can enable ClassWeights for classificationLayer or you can also use focalLossLayer.

3年以上 前 | 0

| 採用済み

回答済み
Problem with fitceco can you help me please ?
Change line 48 to: classifier = fitcecoc(trainingFeatures,trainingLabels,'Coding','onevsall','ObservationsIn','columns') Refer...

3年以上 前 | 0

| 採用済み

回答済み
Saving Label output using for loop
Instead of using sprintf you can save the labels into a categorical array as follows: image_folder = cd; filenames = dir(fullf...

3年以上 前 | 0

| 採用済み

回答済み
Error using errorbar>checkSingleInput (line 264) XData must be the same size as YData. I'm trying to create error bars for the following points in x an y.
As per the syntax errorbar(x,y,neg,pos), the size of x and y should be same but in the above code ChBm and ChAn have different s...

3年以上 前 | 0

回答済み
How can i fix this error?
Even though you are creating a "auds" augmentedImageDatastore object, you are not using it to train your network. Change the lin...

3年以上 前 | 0

| 採用済み

回答済み
Deep learning function for LiDAR and point cloud data.
You can refer to the following: Getting Started with Point Clouds Using Deep Learning, Lidar Labeling, Segmentation, and Detecti...

3年以上 前 | 0

回答済み
Which MATLAB course to start as a beginner with 0 knowledge.
You can get started with the MATLAB Onramp course and also refer to the following pages Getting Started with MATLAB & Get Starte...

3年以上 前 | 0

回答済み
How to disable dynamic menu items from axes
Refer to the documentation of Control Chart Interactivity and set the Visible property of the AxesToolbar object to 'off' ax = ...

3年以上 前 | 0

| 採用済み

回答済み
How to plot confusion matrix for for multi classes
The above confusion matrix chart can only be obtained using the function plotconfusion(targets,outputs) which requires true labe...

3年以上 前 | 0

| 採用済み

回答済み
Question about omphybweights function of the Phased Array System Toolbox
As you already know that omphybweights is introduced in the R2019b release, you cannot use it in R2018a version of MATLAB. You c...

3年以上 前 | 0

回答済み
How to label on top and bottom side of the figure
You can refer to the following answer: Is it possible to plot the data and show two different scales for the same data using MAT...

3年以上 前 | 1

回答済み
Clustering Time Series with DTW
I think the error is due the reason that dtw function operates on 2 signals only and the output is always a scalar. As per the ...

3年以上 前 | 1

| 採用済み

回答済み
How to find the center of mass of each cluster
From the above information I'm assuming that data is a matrix of size 168x65. So data(:) returns a new array of size 10920x1 (al...

3年以上 前 | 0

| 採用済み

回答済み
custom neural network error( About dlfeval )
The input dlX for the forward(dlnet,dlX) function should be a formatted dlarray. Refer to the documentation of forward (specific...

3年以上 前 | 0

| 採用済み

回答済み
How can I add additional images to a neural network such as AlexNet ?
As per my understanding you want the the alexnet network to work on the object categories other than the 1000 object categories ...

3年以上 前 | 0

回答済み
blkbuild command is not working
One possible cause of the error is that the Control System Toolbox is not installed. If that's the case then refer to Get and Ma...

3年以上 前 | 1

| 採用済み

回答済み
Which app is the best for data predictions?
Based on the above information I think you can start with Regression Learner followed by Neural Net Fitting or Curve Fitting App...

3年以上 前 | 0

回答済み
From hyperspectral image to rgb image
The following functions may be useful: hypercube & colorize. Refer to the documentation page of Hyperspectral Image Processing...

3年以上 前 | 1

| 採用済み

回答済み
Oscillation in neural network
You can refer to the documentation of Deep Learning Tips and Tricks & resources available under Deep Learning Tuning and Visuali...

3年以上 前 | 0

回答済み
Perimeter by adding distance
You can refer to the documentation of the functions perimeter & polyshape. pgon = polyshape([0 0 1 3], [0 3 3 0]); plot(pgon) ...

3年以上 前 | 0

回答済み
Help!!! Why is it prompted that the subscript indices must be positive integer or logical type?
The value of n is a double whereas array indixes must be positive integers or logical type. Change the class of n to integer bef...

3年以上 前 | 0

| 採用済み

回答済み
Index exceeds the number of array elements (36)
One possiblity is that you have declared a variable with the name "title" and it has 36 elements. If that's causing the error th...

3年以上 前 | 0

回答済み
Using Variable in Legend in for loop
Refer to Add Legend to Graph for more information. You can make use of the 'DisplayName' name value pair argument as follows: ...

3年以上 前 | 0

回答済み
Motor control toolbox license
You can check the products you are licensed to by Navigating to https://www.mathworks.com/licensecenter/licenses and Click on yo...

3年以上 前 | 0

回答済み
Plot a 2 y axis graph
Refer to the documentation of yyaxis for more information. I was getting two Y-axes when I tried your code: x = 0:0.05:0.333333...

3年以上 前 | 0

| 採用済み

回答済み
How to add new properties (layer name) in DlconvOp.m in deep network training
"Name" is already a property of the custom layer whereas you can define the "Index" property under the Optional Properties. You ...

3年以上 前 | 0

| 採用済み

回答済み
set the contourslice line colors
The following syntax of s = contourslice(___) of the contourslice function returns the array of Patch objects created. You can r...

3年以上 前 | 0

| 採用済み

回答済み
Exception in thread "AWT-EventQueue-0": java.lang.OutOfMemoryError: Required array size too large
The following resources may help you to get more information on the "Required array size too large" error : Resolve “Out of Memo...

3年以上 前 | 0

さらに読み込む