回答済み
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年以上 前 | 1

回答済み
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年以上 前 | 1

| 採用済み

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 1

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 1

| 採用済み

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

4年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 1

| 採用済み

回答済み
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年以上 前 | 0

回答済み
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.

4年以上 前 | 0

| 採用済み

回答済み
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...

4年以上 前 | 0

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

5年弱 前 | 0

回答済み
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年弱 前 | 2

| 採用済み

回答済み
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年弱 前 | 0

回答済み
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年弱 前 | 0

回答済み
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年弱 前 | 0