已回答
I have the file "RML2016.10b.dat" and want to extract the data inside it.
It mentions on https://www.deepsig.ai/datasets that the data is stored in a pickle format. @Juhi Singh's answer should give yo...

3 years 前 | 0

已回答
How to group multiple data points (rows) from the same person into one row (containing the average) in a table?
This seems like just the use case for findgroups and splitapply. Both the linked pages have good examples that should help you ...

3 years 前 | 0

| 已接受

已回答
Standardization fitlm, weird results?
The reason your outputs aren't even in the same range is because you're comparing apples to oranges -- in two different places. ...

3 years 前 | 1

已回答
Display name of line in plot
Simple solution The simplest solution here is to leverage legend. If legend doesn't make sense in your case because all the lin...

3 years 前 | 0

已回答
overlay nifti mask on nifti volume
You can use the niftread function to import your 3D data. Once imported, it behaves just like any 3D matrix. You can then appl...

3 years 前 | 0

已回答
Is there a way to get the pattern sequence form a generated graph?
Finding periodicity using autocorrelation seems like just the example for this scenario.

3 years 前 | 0

已回答
Can zp2sos be used in an audio plugin?
The reason this error occurs is because you're using p as the "this" input argument and then overwriting it by the output of the...

3 years 前 | 1

已回答
How do i get frequency coefficients from an audio file
The short time fourier transform (stft) should be a good start if you want to use frequency coefficients to classify sounds. T...

3 years 前 | 0

已回答
How to create a for look that will allow me to iteratively add data to my cell array as I analyze each of my EDA files
EDA_data=cell (40,6) for n=1:40 % you can add a call to your function here to extract the six values % used in the ne...

3 years 前 | 0

已回答
Global variables not working
Your global variable 'serialObject' has no data in it. That's the root cause. We'll see why. When the code hits the first disp ...

3 years 前 | 0

已回答
How do apply LSA and train a Deep Learning LSTM network?
You might be interested in the fitlsa function. Here's an example on using LSTMs for text generation: Generate text using LSTMs...

3 years 前 | 0

已回答
Como se evalúa y grafica una función en App Designer
y = f(x); This should work. Esto debería funcionar (Spanish from Google Translate)

3 years 前 | 0

已回答
Reference instances of class object
It's not a good habit to name variables with respect to input/strings/numbers. Please strongly consider avoiding this pattern. H...

3 years 前 | 1

已回答
Why do I get the error ''Unrecognized function or variable 'regimeNormalization'. Error in @(data)regimeNormalization(data,centers,centerstats)''
The helper function regimeNormalization is defined at the bottom of the example page.

3 years 前 | 0

已回答
Add image on pcshow plot
Here's a simple example that meets your requirements halfway. You can adapt it as necessary. This example uses uicontrol to add...

3 years 前 | 1

| 已接受

已回答
Mask R-CNN Evaluation metric
Masks represent an area. Simliar to IoU for bounding boxes, there is a metric for masks too called MaskIoU. You could google mor...

3 years 前 | 0

| 已接受

已回答
Error when using timetable/retime
Ah, I had a second look. This is a known bug and is reproducible in R2019a. It was fixed in R2019b. You could try one of two t...

3 years 前 | 0

| 已接受

已回答
Call python stepper motor code to Matlab with Raspberry Pi
This is not a MATLAB error. The output that you're seeing comes from the system. Refer doc page for system command's output. Th...

3 years 前 | 0

已回答
How to plot 'smooth' cell array graphs
You're looking for the fit function from the Curve Fitting Toolbox. There are some great examples on the doc page that should he...

3 years 前 | 0

| 已接受

已回答
Steady State data finding
Seems like a job for diff and maybe cumsum on the diff depending on how you wish to handle the rolling window. Once you have tho...

3 years 前 | 0

已回答
Help with writing a function of Log-return and Volatility of a stock
I'm not sure what the terms in those expressions are. If you're new to MATLAB and would like to learn the basics, have a look at...

3 years 前 | 0

已回答
How to create USA map with states names having different colors?
usamap is the function you're looking for. Have a look at the example on diplaying the map of USA including Alaska and Hawaii. ...

3 years 前 | 0

已回答
Block does not fully set the dimensions of output 'A'
The first assignment to an output variable determines its size in MATLAB Function blocks. I suppose Simulink isn't able to infer...

3 years 前 | 1

已回答
How to recall Classification Learner models in the command window
All the options that you see in the Classification Learner App have functional equivalents as well. All those functions are tuck...

3 years 前 | 0

| 已接受

已回答
Matrix to 12 bit image without pixel information loss
imshow might internally be using imwrite and as mentioned in the description for imwrite, double values get scaled and written a...

3 years 前 | 0

| 已接受

已回答
Matlab textArea automatic new line issue
It's possible that the TextArea has WordWrap property set to 'on' by default. If that doesn't solve it, you could try a couple...

3 years 前 | 0

已回答
Predicted response Value / Regression LearnerApp
Have a look at this page: Train Regression Models in Regression Learner App As it says in the first paragraph, what you see in ...

3 years 前 | 0

已回答
How can i mark wheezes(.txt file) on the sound file on GUI
One way to do this would be using the brush tool. Here's an examples that shows how to select multiple vaues from a plot and the...

3 years 前 | 0

已回答
I want to set binary categories to sub-folder names, which will become class labels
I assume you are working with image datastores and you're looking to create a dataset with images belong to two classes. image...

3 years 前 | 1

已回答
Why won't Simulink Onramp launch?
The 'CacheFolder' mentioned is from Simulink preferences > General. More details on it are given in this section from the page...

3 years 前 | 5

| 已接受

加载更多