Community Profile

photo

Arkadiy Turevskiy

Last seen: 8일 전 2011년부터 활동

Followers: 0   Following: 0

연락

통계

All
  • 5-Star Galaxy Level 5
  • Personal Best Downloads Level 4
  • First Review
  • First Submission
  • 24 Month Streak
  • Thankful Level 3
  • Pro
  • Revival Level 4
  • Knowledgeable Level 5
  • First Answer
  • Solver

배지 보기

Feeds

보기 기준

답변 있음
The Best type of Neural Network to Create a battery Charging Control System
Hi Alex, Thanks for the interesting question. I think the question about the type of neural network is not the main question...

14일 전 | 1

| 수락됨

답변 있음
PID autotuning in Matlab code
Answered here

3개월 전 | 0

답변 있음
PID Autotuner does not work?
When I try to tune PID controller in your model I get an error that linearization failed because RMS measurement block, i..e, th...

3개월 전 | 0

답변 있음
PID Tuner couldn't find a stabilizing controller
Your sysr system is somewhat tricky - several unstable poles. PID Tuner tries to come up with a guess/estimate for response tim...

3개월 전 | 0

답변 있음
Difference open vs closed loop pid autotuner
Hi, Initial controller means PID controller with the gain values you already have from previois design, educated guesses, etc...

3개월 전 | 0

답변 있음
Problem in MPC in Simulink
Please see this post

3개월 전 | 0

답변 있음
How to train Model Reference Controller
Hi. This block is not actively maintained anymore. Please try Model Reference Adaptive Control block in Simulink Control Design...

3개월 전 | 0

답변 있음
Need MATLAB code for tuning of multiple PI controllers in Simulink
There are a couple of options you could explore. Tune each inidividual PI controller. You can use closed-loop PID autotuner blo...

3개월 전 | 0

답변 있음
Error in port widths or dimensions. in RL output agent
Hi, there is not enough information to really help you. Can you share the code where you define and train your agent. The error...

3개월 전 | 0

답변 있음
how can we create an LPV model by using data driven state space model of induction motor under various rpm (from 1000 to 10000, 10sets)
Hi, thanks for the question. You can create LPV model using lpvss function. Please further refer to this page, Using LTV and L...

3개월 전 | 0

| 수락됨

답변 있음
What kind of Reinforcement Learning algorithm is used in this simulations?
Hi, I am not sure what part of Onramp you are asking about, because your link does not point to a specific module. Onramp dis...

5개월 전 | 0

답변 있음
Prepare dataset for Neural State Space to be used as StateFcn in nlmpc
Thanks for posting the code. To de-normalize the data you need to save mean and standard deviation data used for normalizatio...

5개월 전 | 0

| 수락됨

답변 있음
How does the RL Agent Simulink Block Internal Mechanism Actually Work?
Hi Aaron, RL Agent block is implemented with a MATLAB object. There are different types of agents avialble. This is explained ...

5개월 전 | 0

| 수락됨

답변 있음
Dynamic system modelling with neuronal networks
We have see that neural ODEs do very well with capturing nonlinear dynamics. System Identification Toolbox provides a pretty sim...

6개월 전 | 0

| 수락됨

답변 있음
More accurate alternative to rlocfind to analyze root locus in control systems engineering
Hi, Here is a way to do it (not the most efficient, but it works). % Define the transfer function h = tf([2 5 1], [1 2 3]); ...

12개월 전 | 1

답변 있음
Torque controlled BLDC motor
Maybe another approach could be to use reinforcement learning and formulate a reward to minimize torque ripple. This way you wou...

대략 1년 전 | 0

답변 있음
Equivalent of Neural ODE for discrete time state space models
We added idNeuralStateSpace object that support both continuous and discrete time model. Maybe this could be useful. It was crea...

대략 1년 전 | 1

답변 있음
My deep learning network design APP, no matter what network I use, such as Alexnet, cannot display the training-process graph, and the display area is blank, MATLAB R2022b
Hi, Are you by any chance running this code in MATLAB Grader? Based on the other answer it appears MATLAB Grader does not su...

대략 1년 전 | 0

답변 있음
Using a neural network with a dropout layer in Simulink
Hi, I'd like to mention a couple of things. Please take a look at the doc. It says: "At training time, the layer randomly set...

1년 초과 전 | 0

| 수락됨

답변 있음
Deep learning Toolbox - LSTM Training
Hi Patrick, Two suggestions: Try to test your LSTM network in MATLAB first. Does it match the validation data. If it does, th...

1년 초과 전 | 0

답변 있음
How can i use a DLNetwork type Neural Network from Matlab in Simulink?
Hello, You can use Simulink blocks that ship with Deep Learning Toolbox. Please take a look at Deep Learning with Simulink se...

2년 초과 전 | 0

| 수락됨

답변 있음
Import a Neural Network trained in PyTorch in Simulink
Hi Marco, At the moment the direct import of PyTorch models into MATLAB (and Simulink) is not supported. You can try exportin...

2년 초과 전 | 2

답변 있음
Link Simulink with Neural Network Toolbox
Please see Deep Learning with Simulink documentation page.

2년 초과 전 | 0

답변 있음
Deep Learning Toolbox and Neural Network Toolbox
Neural Network Toolbox was renamed to Deep Learning Toolbox in 2018, so there is no separate license. The error message seems to...

2년 초과 전 | 1

답변 있음
How to use LSTM based trained Recurrent Neural Network in Simulink?
Hi, We added a library of blocks to integrate deep learning networks into Simulink models starting with 20b. Support for LSTM ...

2년 초과 전 | 0

답변 있음
Incorporate trained LSTM network in simulink
Hi, Starting with 21a you can use Stateful Predict and Stateful Clasiffy blocks. Take a look at this example too. Hope this h...

2년 초과 전 | 0

답변 있음
It is possible to implement a LSTM neural network built with Keras Python in a Simulink block?
You can do it in two steps: Import a model into MATLAB. See this function for TensrFlow 2 or this function to import from Kera...

2년 초과 전 | 0

답변 있음
How to deploy trained Faster RCNN object detector in Simulink
As of R2021b you can use Deep Learning Object Detector block in Computer Vision Toolbox. For mpre information please see Deep Le...

2년 초과 전 | 0

답변 있음
Deep Learning and Simulink
Starting with R2020b you can use Image Classifier block that ships with Deep Learning Toolbox. For more information on how to u...

2년 초과 전 | 0

| 수락됨

답변 있음
How can I deploy a trained LSTM net on simulink to classify new data?
Hi, We added a library of blocks to integrate deep learning networks into Simulink models starting with 20b. Support for LSTM ...

2년 초과 전 | 0

더 보기