Answered
Why different results showing for laptop and desktop
Hard to say without seeing the code itself, but my first instinct would be to check if you are calling any hardcoded paths. If t...

3 months ago | 0

Answered
Are there any up-to-date MATLAB to Python converters?
You can compile MATLAB code/functions directly to a Python Package using MATLAB Compiler. https://www.mathworks.com/help/compile...

3 months ago | 0

Answered
Ranking Strategy for Large Temperature Dataset
timetables are quite useful when working with data that is regularly spaced in time. You can index to specific time points and r...

3 months ago | 0

Answered
How to compute RMSE on training set and validation set in LSTM regression?
You'll want to look at the info object returned by trainnet.See this previous post for more info.

3 months ago | 0

Answered
How to feed labels in YOLO txt format into imageDataAugmenter?
imageDataAugmenter does not take labels as input. You would include those when you're creating your original imageDatastore. Spe...

3 months ago | 0

| accepted

Answered
clustering two columns of data
You want to use the linkage and dendrogram functions.

3 months ago | 0

Answered
How to cluster 1-d data using KDE
Something like this? % Generate sample data with two clusters data = [randn(100,1); 5+randn(100,1)]; % 100 points around 0 and...

3 months ago | 1

| accepted

Answered
Question on creating dynamic matrix variables
May be worth looking into structures instead of matrices. https://www.mathworks.com/help/matlab/matlab_prog/generate-field-names...

4 months ago | 0

Answered
How do I automatically show a console window when launching a compiled app on a Mac?
Have you tried just calling system("") in the startup function of you app?

4 months ago | 0

Answered
standardizeMissing not converting selected values to NaN
It's because your values are integers not doubles. There is no room for a NaN value when using integers. The documentation for t...

4 months ago | 0

| accepted

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

4 months ago | 1

| accepted

Answered
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...

4 months ago | 0

Answered
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...

4 months ago | 0

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

4 months ago | 0

Answered
Facing Error while generating presentation through Matlab App designer
Did you run makeDOMCompilable?

4 months ago | 0

| accepted

Answered
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...

4 months ago | 0

Answered
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...

4 months ago | 0

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

4 months ago | 0

Answered
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...

4 months ago | 0

Answered
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...

4 months ago | 0

Answered
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...

4 months ago | 0

Answered
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...

4 months ago | 0

| accepted

Answered
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...

4 months ago | 0

Answered
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])

4 months ago | 0

Answered
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...

5 months ago | 0

Answered
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,...

5 months ago | 0

Answered
MATLAB mobile IMU sensor - Device Orientation
The algorithm is described in the ahrsfilter documentation.

5 months ago | 0

Answered
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"?

5 months ago | 0

Answered
Unable to Segment Iris from Preprocessed Eye Dataset.
Have you considered just using imfindcircles?

6 months ago | 0

| accepted

Answered
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.

6 months ago | 0

Load more