回答済み
how to write pseudocode in simulink
By pseudocode in Simulink, if you mean you're loooking to setup a high level structure for your Simulink model, you could do tha...

約3年 前 | 0

回答済み
Reading python pickle of dict in MATLAB causes error
Map containers might be what you're looking for.

約3年 前 | 0

回答済み
Clock game,how to set parameters
This is fun. Since this seems ilke a HW problem, I'm just going to list out what functions I think you might find useful: randi...

約3年 前 | 0

回答済み
How can I import the CNN results from MATLAB to GNU Radio or OpenVINO
As mentioned on this doc page on Import and Export of Networks, you can export networks from MATLAB to the ONNX format using the...

約3年 前 | 0

回答済み
Generate random numbers from a probability density estimate
By heatmap, if you're looking to plot the estimated density function, you can plot that using f and xi. Here's a good example th...

約3年 前 | 0

回答済み
how to add method to fuzzy toolbox
If you're looking to add custom defuzzification methods, have a look at this section on adding custom defuzzification methods fr...

約3年 前 | 0

回答済み
Add custom defuzzification methode - code needed for modified center of area
Adding to Nikolaos' answer, have a look at this section on adding custom defuzzification methods from this page on Building Fuzz...

約3年 前 | 0

回答済み
Error with Fuzzy Tree Model
There were a couple of issues that needed fixing. Every FIS needs to have its Inputs, Outputs and MFs defined separately. FIS...

約3年 前 | 0

| 採用済み

回答済み
how can i read a use a fits file?
I think what you're looking for are the fitsread and fitsinfo functions. There are examples in the doc pages for the both the f...

約3年 前 | 0

| 採用済み

回答済み
Co-Active (CANFIS)
Here's a community contribution from the File Exchange that might be of use to you: https://www.mathworks.com/matlabcentral/file...

約3年 前 | 0

回答済み
Multiple Plot in gensurf in fuzzy system
You might be looking for the plotmf function which plots the different membership functions from an FIS object. Some examples ...

約3年 前 | 0

回答済み
Error in fuzzy logic controller file
This error arises because your FIS file is not found in the present working directory (pwd). This is mentioned in the docs for...

約3年 前 | 1

回答済み
Real time plot arduino in app designer
I'm not entirely clear as to your end goal but my understanding is that you're trying to read and write some signals to and from...

約3年 前 | 0

回答済み
wired behaviour in the Transposed Convolution Layer
Part 1 I see this too. The doc for 'NumChannels' property mentions that the parameter must be equal to the number of channels o...

約3年 前 | 0

| 採用済み

回答済み
How to track objects using trackerGNN with some logic applied
Here's an example of how trackerGNN can be used in object tracking: Track Two Objects with trackerGNN Since you mention that yo...

約3年 前 | 0

回答済み
Setting initial hidden state of an LSTM with a dense layer
Sequences are padded to the 'longest' in a mini-batch. More on that here: Sequence Options The same initial value for Hidden st...

約3年 前 | 0

回答済み
Raspberry Pi Fuzzy Logic
Here are links from the docs on setting up a Raspberry Pi and obtaining data from it. The second link has references to many exa...

約3年 前 | 0

回答済み
Training a dense layer along with an lstm layer
I suppose what you're asking for is to have an LSTM layer in which the initial values of hidden state is trainable. If that's th...

約3年 前 | 0

| 採用済み

回答済み
Extract solution from struct
The setup looks good. You can use the solve function to find the solutions to a given symbolic equation as shown in this example...

約3年 前 | 0

回答済み
Hanning window, interpolation and resampling
This looks like it's part of an assignment. It would be better if you could share your attempts (code) so far and mention the er...

約3年 前 | 0

回答済み
Digital signal processing using FFT
It's true that the typical value of n is a power of 2 in n-point FFTs. It's not mandatory though. As mentioned in the doc for ...

約3年 前 | 0

回答済み
DFT TECHNIQUE to determine FREQUENCY
This looks like a homework problem. Please show the attempts you've made so far and mention where you're getting stuck. Since y...

約3年 前 | 0

回答済み
initial guess for bvp4c
There are three parts to this problem: 1. Error: Too many input arguments. To solve this issue, the second argument to bvpinit...

約3年 前 | 0

| 採用済み

回答済み
I have the errors when learning GARCH: lags must be unique, positive integers?
'GARCHLags' and 'ARCHLags' properties can only be positive vectors. See function syntax. This is because the 'GARCHLags' input c...

約3年 前 | 0

回答済み
Conditional Indexing of a cumsum
Store find(cs<=1) in a temporary variable and count the number of elements in that list. tmp = find(cs<=1); if numel(tmp)>=4 ...

約3年 前 | 0

| 採用済み

回答済み
Fast Fourier Transform for frequency domain
The attached paper says in Section 2.2.1: Fourier transform (FT) is particularly interesting among the data processing meth...

約3年 前 | 0

回答済み
HOW TO USE RIRE TO SHORTCUT DICOM INFO
From what I gather, the RIRE format contains header and data files as mentioned here: https://www.insight-journal.org/rire/data_...

約3年 前 | 0

回答済み
How to generate Matlab code for ANFIS?
If you're looking for the underlying MEX code, I'm afraid that will not be accessible. You can however see some limited code b...

約3年 前 | 0

回答済み
For loop in GARCH Monte Carlo Simulation
I'm unsure what the variables mean. If what you are trying to do is preserve the values at each step of your for loop, you can d...

約3年 前 | 0

| 採用済み

回答済み
1d CNN with classification layer for prediction
A couple of details are unclear to me. I don’t understand the different classes you have in a wind speed dataset. If the X_t...

3年以上 前 | 0

さらに読み込む