Answered
Why wrong using of RESHAPE when I do trainNetwork in LSTM?
Hi, You might want to convert your data to dlarray, and use dlarray batches for training LSTM's as mentioned here. The number ...

4 years ago | 1

Answered
How can I extract metrics/data of the LSTM training progress ?
Hi, You can use [net,info] = trainNetwork(XTrain,YTrain,layers,options); while training a network, to access 'info' struct. ...

4 years ago | 1

| accepted

Answered
Conversion of uitable Column Names to Table Column Names
Hi, You can directly use the transposed cnames as Variable names. As in, cnames = {'X';'Y';'Z';'FM';'diff';'dy1';'dy2'}; row...

4 years ago | 0

Answered
How can I add a diagonal gradient and corresponding colorbar to a plot?
Hi, colormap's can be used to do so. Look at an example here.

4 years ago | 0

Answered
Multiple legends on Axes in App Designer?
Hi, As I understand, you want to add multiple legends in App Designer. This can be easily done as in the example below: hol...

4 years ago | 0

Answered
problem inserting some site coordinates on a map created by geoshow
Hi, Assuming the variables ‘lat’,’lon’,’Z’ are correctly initialized, you can plot the markers on the surface map, using figu...

4 years ago | 0

Answered
Read in a file with no spaces and write one part of each line into a file
Hi, You can use importdata and access the frequencies by: c = importdata('filename',',',1); c.data

4 years ago | 0

Answered
Convert table and obtain column values
Hi, For the particular task one possible solution could be by first converting the table to cell array using table2cell. And ...

4 years ago | 0

| accepted

Answered
report results of tests run with testmanager works from testmanager only
Hi, It is stated in the MathWorks documentation that the report is only generated if the model has failed for at least one tes...

4 years ago | 1

Answered
How to set upper/lower bound of a Numeric Slider control in a Livescript to a variable value?
Hi, You can specify the lower and upper bounds by specifying the ‘Limits’ attribute. Look here.

4 years ago | 0

Answered
Using a loop to display areas of objects over centroids
Hi, You can use insertText which can display text over the image on the position specified. This could annotate the nuclei with...

4 years ago | 0

Answered
SimEvents: is it possible to change event action variable from script?
Hi, I believe variable declared within a block parameter of Simulink block might not be accessible from the MATLAB as it goes...

4 years ago | 0

Answered
Abandoned Object Detection using Deep learning
Hi, Many a times real life data is not available, for those cases synthetic data can be used to train your model. This is perf...

4 years ago | 1

| accepted

Answered
Combine multiple .cvt files
Hi, The result can be merged using cvsim. Refer the following link. Hope this helps.

4 years ago | 0

| accepted

Answered
What exactly is the scale attribute that is calculated by detectSURFFeatures()?
Hi, You are confusing the 'scales' here. Each octave has fixed number of scale levels. detectSURFFeatures() does not return tha...

4 years ago | 0

Answered
How can I detect the SURF Features of 100 images? (I already have the code)
Hi, I am assuming you want to visualize the keypoints of all the 100 images. You can do so by: images_dir ='C:\Users\pittsl\De...

4 years ago | 0

| accepted

Answered
My plot is not showing the lines. Can someone please point me in the right direction? Thanks,
Hi, As pointed out correctly in the comments, the plot won't show anything if you plot a single point without a marker. It is b...

4 years ago | 0

Answered
Gui table with dropdown problem
Hi, Unfortunately, this functionality is not available in GUIDE. You can do the same in App Designer by using this code in the...

4 years ago | 0

Answered
How to to calculate each decile average based on group?
Hi, In a table, you can first group rows using unique date values in the Date column, then compute your required statistics usi...

4 years ago | 0

Answered
When I want to uninstall my matlab, it tells the error 'background merge hit exception:...'
Hi, This problem seems to be because of insufficient disk space. You can follow this for trying other methods of uninstalling M...

4 years ago | 0

Answered
Extracting data from a gaussian
Hi, As you saw, methods(f1) returns the plausible functions that can be used with the cfit class object f1. You can check ...

4 years ago | 1

| accepted

Answered
i want to create a checklist
MATLAB provides App Designer to create UI applications. You can add various components to your application from the Component Li...

4 years ago | 0

Answered
I don't know how to report error in example
Hi, This issue has been brought to the notice of the concerned team. They will investigate the matter further.

5 years ago | 0

| accepted

Answered
temporarily Account locked; licence Login
Hi, Usually the account is locked due to failed login attempts. If it is still locked, you can try resetting your password, or...

5 years ago | 0

Answered
saving mat files >2gb
Hi, Try saving the variable in an HDF5 dataset using ‘h5write’.

5 years ago | 0

Answered
How to close system command prompt opened by MATLAB !command?
Hi, As rightly pointed out by @Walter, the command system('Taskkill/IM cmd.exe') closes all the opened command windows.

5 years ago | 2

| accepted

Answered
Not able to call python script from matlab using py command
Hi, This is a common error that occurs when python is not able to locate your script. You can add the path of your file to the...

5 years ago | 0

Answered
Constructing image data as dictionaries
Hi, The code does not provide information on the keys and values used in the dictionary. You can use containers.Map to create ...

5 years ago | 0

Answered
how to find a output value at time t for a input value at time t in simulink
Hi, From what is assumed, you want to analyze and use the values of the input (X) and the output (Y). This can be done by addi...

5 years ago | 0