답변 있음
'embeddingLayer' is used in Train Conditional Generative Adversarial Network (CGAN).
Did you run the following command to open the example? openExample('nnet/TrainConditionalGenerativeAdversarialNetworkCGANExampl...

8개월 전 | 1

| 수락됨

답변 있음
Multiline display with mlreport gen
I think the answers to these questions are what you're looking for. https://www.mathworks.com/matlabcentral/answers/1863073-mat...

8개월 전 | 0

답변 있음
How to give call back function in app design using MATLAB.
To add a callback to a component, open the app in design view. Right-click the component you want to add a callback for and sele...

8개월 전 | 0

답변 있음
How to make sizes of 3D subplots bigger?
tiledlayout will give you greater control over the spacing of the plots than subplot.

8개월 전 | 0

답변 있음
Facing Error while generating presentation through Matlab App designer
Did you run makeDOMCompilable?

8개월 전 | 0

| 수락됨

답변 있음
use of data store for waveform input in deep learning
I believe what you're looking for is a signalDatastore. Here's an example on using signal datatstores and general documentation...

8개월 전 | 0

답변 있음
Image segmentation of these pellets
Have you tried a different colorspace? I converted the image to HSV and used the Color Thresholder app. Just with that I was abl...

8개월 전 | 0

답변 있음
How to better plot flood map/ flood depth in MATLAB?
geodensityplot sounds like a good candidate here. This example show show to implement it.

8개월 전 | 0

답변 있음
Extreme memory usage when using gather
gather is just doing what it's supposed to do. Namely, "On a gpuArray: transfers the elements of A from the GPU to the local wor...

8개월 전 | 0

답변 있음
Using hold for multiple tiledlayout figures in a for loop.
It always helps to be explicit with your figure and axis handles. Also, the for loops were unecessary. Hope this is more what yo...

8개월 전 | 0

답변 있음
convert 2d image into 3d image from side and front views?
This is not a trivial task, but here's some information to get you started https://www.mathworks.com/matlabcentral/answers/89259...

8개월 전 | 0

답변 있음
Unexpected connection and input errors after modifying neural networks
The Deep Network Designer app has a useful Network Analyzer tool for just this type of issue. Open the app using deepNetworkDesi...

8개월 전 | 0

| 수락됨

답변 있음
Create Gui dynamically - resize Gui according to Label Position
Have you considered developing this in App Designer instead of the script based approach you're currently using? With App Design...

8개월 전 | 0

답변 있음
How to generate a matrix from specific outputs from a MATLAB file?
a = [2.1146 1.5751 1.5751 2.7125]' b = reshape(a,[2 2])

8개월 전 | 0

답변 있음
GUI error on Linux only
A compiled MATLAB binary can only be run on machines which match the architecture of the machine that originally compiled the bi...

9개월 전 | 0

답변 있음
Issue with overlaying medical images using transparency
You could use imfuse. load workspaceoverlay.mat figure for n = 1:10 subplot(2,5,n) % MRtr = imshow(Ven(1:156,1:156,...

9개월 전 | 0

답변 있음
MATLAB mobile IMU sensor - Device Orientation
The algorithm is described in the ahrsfilter documentation.

9개월 전 | 0

답변 있음
Letting my user choose a subset of a plot
Is this what you're looking for when you say "let the user drag from left to right"?

9개월 전 | 0

답변 있음
Unable to Segment Iris from Preprocessed Eye Dataset.
Have you considered just using imfindcircles?

9개월 전 | 0

| 수락됨

답변 있음
How can I Classify Hyperspectral Image using .h5 Prisma data?
You can use h5read to load your file, and then just format your data to match the input in the example.

9개월 전 | 0

답변 있음
How to display the value of a variable in real time in a uitable through appdesign
Yes, this is possible. To implement this in App Designer, you will access the "Data" property of the UITable. app.UITable.Data ...

9개월 전 | 0

답변 있음
Is there someway I can use the eeglab toolbox with matlab online?
If you select "Get Add-ons" on the Home tab and search for "EEGLAB" you will find an option to install it as an add-on directly ...

10개월 전 | 1

답변 있음
Reading data from file with jsondecode
Have you tried readstruct? It will create a structure from JSON data, and you can even parse by selected standards.

10개월 전 | 0

답변 있음
Matlab plot disappears after editing X and Y limits
Difficult to say without seeing the actual code, but you can try something like this: ax = gca; ax.XLim = [1 10]; % Use your v...

10개월 전 | 0

| 수락됨

답변 있음
how to plot confusion matrix from confusion matrix?
load confmat.mat % Calculate the percentage accuracy for each class percentageAccuracies = (diag(confmat)' ./ sum(confmat,...

10개월 전 | 0

답변 있음
Setting colormap to lines from streamslice
You could just randomly generate the colors: load wind lineObj = streamslice(x,y,z,u,v,w,[],[],5,'noarrows'); for ii = 1:leng...

10개월 전 | 0

| 수락됨

답변 있음
How i add the button for the Time axis to user can change time in the given MATLAB App designer
The property you want to change is app.UIAxes.XLim. You could implement this with a ButtonPressedFcn callback (like you have don...

10개월 전 | 0

답변 있음
Creating Variable Names from Strings
As other users have stated, it is generally not advisable to dynamically generate variable names from a string using eval. Howev...

10개월 전 | 0

| 수락됨

답변 있음
How to get Sharing Details in App Designer
When you go to package the app there is a field for the version number. When the app is installed, the user can view the ve...

10개월 전 | 0

답변 있음
Issues with EDF file data record duration
https://www.mathworks.com/help/signal/ref/edfread.html https://www.mathworks.com/help/signal/ref/edfwrite.html You will have t...

10개월 전 | 0

더 보기