photo

Yash Sharma


Last seen: 대략 2개월 전 2023년부터 활동

Followers: 0   Following: 0

통계학

  • 12 Month Streak
  • Knowledgeable Level 3
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
Is it possible to create global variables (objects) of custom classes in Simulink?
Hi Roop, You can take a look at the following Matlab answer to answer your query. https://www.mathworks.com/matlabcentral/answ...

4개월 전 | 0

답변 있음
Is it possible to change some parameters during a RL training?
Hi Leonardo, If you want to change some parameters while the training is running, you will need to implement a custom training ...

4개월 전 | 1

답변 있음
Complete transformer model (Encoder + Decoder + Interconections)
Hi Will, You can take a look at the following file exchange submission. Transformers Models:- https://www.mathworks.com/matlab...

4개월 전 | 0

답변 있음
how to display the calling relation ship between simulink function and function caller
Hi wenchao, To visually showcase the relationship between a function caller and a Simulink function, follow these steps: Open ...

4개월 전 | 0

| 수락됨

답변 있음
how to build one to many and many to many LSTM in matlab?
To build one-to-many and many-to-many LSTM models in MATLAB, you can use the Deep Learning Toolbox. You need to change number of...

5개월 전 | 0

답변 있음
Creating simulink neural network from my own weights and bias
To integrate your manually created neural network into Simulink, you can use MATLAB Function blocks to implement the network's f...

5개월 전 | 0

| 수락됨

답변 있음
Training TCN network in batches to predict a continuous variable
To train your network with time-series data from multiple trials while preserving the sequential nature of the data, you need to...

5개월 전 | 0

| 수락됨

답변 있음
How to train autoencoder on dlarray data for feature extraction?
To train an autoencoder for dimensionality reduction on your high-dimensional time-series dataset, you can follow these steps in...

5개월 전 | 0

| 수락됨

답변 있음
Saving Simulink Model Programatically also makes a copy of a test harness
Hi, In order to stop auto generation of test harness you will have to detach the harness form the model, follow the below step...

5개월 전 | 0

답변 있음
Stateflow use custom C code, while generating C++ using Embedded coder
Hi Jafar, To integrate C custom code with C++ code generation in Simulink using Embedded Coder, you can configure your model a...

5개월 전 | 0

| 수락됨

답변 있음
Neural network for regression task: Circuit modeling
Hi Simone, To adapt your current deep learning model to take into account the "memory" effect of your electrical circuit by usi...

6개월 전 | 0

답변 있음
Which equation is solved with ThermalModel?
For thermal analysis, the thermalModel object in MATLAB simplifies the process of setting up and solving heat transfer problems....

7개월 전 | 0

답변 있음
Method to utilize compressor table in Powertrain Blockset on own purpose
To build a compressor map and correlate it with your own data for use in a Simulink model independently from the Powertrain Bloc...

10개월 전 | 0

답변 있음
Saved Agent gives me constatn output always..
Hi Sungho Park, I understand that you have a pretrained RL DDPG agent and you want to load that agent in MATLAB, when you load ...

10개월 전 | 1

답변 있음
multidimensional triangulation based on non-Euclidean distances from landmarks
Hi Philipp, Landmark MDS can work with non-Euclidean distances, such as correlation distances. However, it's important to note ...

10개월 전 | 0

답변 있음
Communicating to NET dll by class.
Hi Laurent, Yes, it is possible to send a class to and from a MATLAB .NET assembly and a C# Visual Studio project. MATLAB Compi...

10개월 전 | 1

| 수락됨

답변 있음
can't smooth GM nifti images using spm12
Hi Ali, It appears that the smoothing operation in SPM12 has failed due to an issue with the datatype of the image you are tryi...

11개월 전 | 0

답변 있음
Training of RL DDPG Agent is not working (Control of an Inverted pendulum)
I understand that you have a reinforcement learning DDPG agent and wants to set learning rate and exploration options of that ag...

대략 1년 전 | 0

| 수락됨

답변 있음
How can I customize code obfuscation in embedded coder?
I understand that you want to have custom structures in the C code generated by embedded coder. Please review the following doc...

대략 1년 전 | 0

답변 있음
Setting a class object property of type string class in a Coder project
I understand that you have a property of string type and wants to change the length of the property using object of the class. ...

대략 1년 전 | 0

| 수락됨

답변 있음
How do I use Matlab Compiler SDK to create executable for GUI app
I understand that you have a MATLAB GUI app and want to make a standalone executable of the same. Here are the steps that you ca...

대략 1년 전 | 0

답변 있음
creating video fire effect from perlin noise
Hi David, I understand that you want to create a fire like effect using perlin noise. The basic idea is to generate Perlin no...

대략 1년 전 | 0

답변 있음
Simulink SDI Snapshot Command Missing Data
Hi Richard, I understand that you want to take snapshot of a plot with 15 signals spread across 9 subplots, to ensure that the...

대략 1년 전 | 0

| 수락됨

답변 있음
Infineon Mosfet SPICE to simulink
Hi Fan, I understand that you want to import an Infineon MOSFET SPICE Model to Simulink, I used your model file, and it is ind...

대략 1년 전 | 0

| 수락됨

답변 있음
comparing subsets of bagofwords and converting bagofwords to cell array
I understand that you have three Bag of Words arrays: spam, nonspam, and allwords. The spam and nonspam arrays are subsets of th...

대략 1년 전 | 0

답변 있음
It is to ask how to Extract features from a signal in matlab
I understand that you have large amount of time series data and you want to extract features like mean, min, max, std, median u...

대략 1년 전 | 0

답변 있음
How to draw a polar coordinate ODE system's phase portrait and trajectory?
Hi Zixuan, I understand that you want to plot phase portrait and trajectory of a linear system of equations with complex eigen...

대략 1년 전 | 0

답변 있음
How can I generate HTML documentation from help/doc output?
Hi Ray, I understand that you want to create HTML documentation for your toolbox that mostly have “classdef” classes. You can ...

대략 1년 전 | 0

답변 있음
시뮬레이션 중간에 s-function을 초기화(clear mex) 할 수 있나요?
I understand that you want to simulate a system failure and want to re-initialize S-function in middle of simulation. To initia...

대략 1년 전 | 0

답변 있음
How to call windows system .dll (CancellationToken)
Based on my understanding, you are trying to access the CancellationToken class from “System.Threading”, but it seems that the c...

대략 1년 전 | 0

| 수락됨

더 보기