![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/30375473_1686544892068.jpg)
Malay Agarwal
Followers: 0 Following: 0
Programming Languages:
Python, C++, C
Spoken Languages:
English, Hindi
Pronouns:
He/him
Python, C++, C
Spoken Languages:
English, Hindi
Pronouns:
He/him
Feeds
답변 있음
How to change my y-axis?
Hi @cindyawati cindyawati, To reverse the direction of the y-axis, you can use the following command: set(gca, 'YDir', 'normal...
How to change my y-axis?
Hi @cindyawati cindyawati, To reverse the direction of the y-axis, you can use the following command: set(gca, 'YDir', 'normal...
20일 전 | 0
| 수락됨
답변 있음
When I use attentionLayer to input QKV, Matlab tells me error
Hi @泽凯, The reason you get this error is because there is a cycle in your neural network. To be able to train the network, MATL...
When I use attentionLayer to input QKV, Matlab tells me error
Hi @泽凯, The reason you get this error is because there is a cycle in your neural network. To be able to train the network, MATL...
25일 전 | 0
답변 있음
How can I get a .mltbx package to display a license dialog?
Hi @Oktay Alkin, According to the documentation for creating and sharing toolboxes, you need to provide a valid URL to the lice...
How can I get a .mltbx package to display a license dialog?
Hi @Oktay Alkin, According to the documentation for creating and sharing toolboxes, you need to provide a valid URL to the lice...
27일 전 | 0
답변 있음
Implementation of the truth table for fuzzy control
Hi @Milad, I have attached a function which creates a fuzzy system. You can use it as follows: fis = create_fis(); figure; o...
Implementation of the truth table for fuzzy control
Hi @Milad, I have attached a function which creates a fuzzy system. You can use it as follows: fis = create_fis(); figure; o...
대략 2개월 전 | 0
| 수락됨
답변 있음
In the generated Polyspace report, the specific line and column numbers of the identified defects in the code are not specified.
Hi @新宝, The following link has some discussion on this topic that might be helpful: https://www.mathworks.com/matlabcentral/ans...
In the generated Polyspace report, the specific line and column numbers of the identified defects in the code are not specified.
Hi @新宝, The following link has some discussion on this topic that might be helpful: https://www.mathworks.com/matlabcentral/ans...
대략 2개월 전 | 0
답변 있음
how to load the .dat file using user define block?
Hi @Vims, You can use a MATLAB Function block. Refer to the following documentation for more information on the MATLAB Functi...
how to load the .dat file using user define block?
Hi @Vims, You can use a MATLAB Function block. Refer to the following documentation for more information on the MATLAB Functi...
대략 2개월 전 | 0
답변 있음
I want to build the matrix
Hi @Husam, You can build the required matrix using the following function: function G = constructG(A, m) n = size(A, 1); ...
I want to build the matrix
Hi @Husam, You can build the required matrix using the following function: function G = constructG(A, m) n = size(A, 1); ...
대략 2개월 전 | 0
| 수락됨
답변 있음
How can I visualize solov2 models like Alexnet,Resnet50,etc., in deep learning toobox
Hi @Yan, MATLAB has a lot of these models built-in. Refer to the following resource for a list of the models available in MATLA...
How can I visualize solov2 models like Alexnet,Resnet50,etc., in deep learning toobox
Hi @Yan, MATLAB has a lot of these models built-in. Refer to the following resource for a list of the models available in MATLA...
대략 2개월 전 | 0
| 수락됨
답변 있음
How can i set initial soc for battery pack module built with battery builder?
Hi @Sebastian Michaelis, The generated battery module block has a block parameter called "Cell state of charge" which determine...
How can i set initial soc for battery pack module built with battery builder?
Hi @Sebastian Michaelis, The generated battery module block has a block parameter called "Cell state of charge" which determine...
대략 2개월 전 | 0
| 수락됨
답변 있음
How to show Edgelabels in PDE Toolbox of particular face only
Hi @Gobinda Debnath, While it is not possible to plot specific edges that belong to a face using pdeplot directly, you can high...
How to show Edgelabels in PDE Toolbox of particular face only
Hi @Gobinda Debnath, While it is not possible to plot specific edges that belong to a face using pdeplot directly, you can high...
대략 2개월 전 | 0
답변 있음
How to determine if code is generated for PIL in PostCodeGenCommand or hook?
Hi @Alexander Sinn, You can access the SimulationMode parameter of the model to determine if the code generation was triggered ...
How to determine if code is generated for PIL in PostCodeGenCommand or hook?
Hi @Alexander Sinn, You can access the SimulationMode parameter of the model to determine if the code generation was triggered ...
대략 2개월 전 | 0
답변 있음
i have a code for solving the stream function using successive line over relaxation , i should get a graph as metioned below can anyone do correcction tions in this code
Hi @Ruthra, The problem is with the initial guess for . Since you initialize it as zeros, the following equation: (1 - omega) ...
i have a code for solving the stream function using successive line over relaxation , i should get a graph as metioned below can anyone do correcction tions in this code
Hi @Ruthra, The problem is with the initial guess for . Since you initialize it as zeros, the following equation: (1 - omega) ...
5개월 전 | 0
답변 있음
How to create a initialize function for a custom layer where the learnable parameters have same size of input?
Hi @BIPIN SAMUEL, I am assuming you are using MATLAB R2024b. You can initialize such a layer by implementing the initialize() ...
How to create a initialize function for a custom layer where the learnable parameters have same size of input?
Hi @BIPIN SAMUEL, I am assuming you are using MATLAB R2024b. You can initialize such a layer by implementing the initialize() ...
5개월 전 | 1
답변 있음
Error with SequenceInputLayer - TrainNetwork Expects Sequence Dimensions
Hi @Huzaifa, For sequence inputs, the trainNetwork function expects the sequences to be passed as a cell array of dimensions , ...
Error with SequenceInputLayer - TrainNetwork Expects Sequence Dimensions
Hi @Huzaifa, For sequence inputs, the trainNetwork function expects the sequences to be passed as a cell array of dimensions , ...
5개월 전 | 1
| 수락됨
답변 있음
How do I train a bounding box dataset on YOLOv5?
Hi @Kenneth Ligutom, MATLAB does not have any function like trainYOLOv4ObjectDetector (for YOLOv4) and trainYOLOXObjectDetector...
How do I train a bounding box dataset on YOLOv5?
Hi @Kenneth Ligutom, MATLAB does not have any function like trainYOLOv4ObjectDetector (for YOLOv4) and trainYOLOXObjectDetector...
5개월 전 | 0
답변 있음
Inquiry about IP address and port number for UDP Send and UDP Receive block
Hi @준호 When working on a local computer, you only need to worry about the "Remote address" and "Remote port" parameters in both...
Inquiry about IP address and port number for UDP Send and UDP Receive block
Hi @준호 When working on a local computer, you only need to worry about the "Remote address" and "Remote port" parameters in both...
5개월 전 | 0
답변 있음
Can any one help me to calculated and plot Chromaticity Diagram CIE(1931, 1976) from PL data
Hi @Mushtaq Al-Jubbori, To plot the chromaticity diagram using the photoluminescence data you've provided, you'll have to calcu...
Can any one help me to calculated and plot Chromaticity Diagram CIE(1931, 1976) from PL data
Hi @Mushtaq Al-Jubbori, To plot the chromaticity diagram using the photoluminescence data you've provided, you'll have to calcu...
5개월 전 | 0
| 수락됨
답변 있음
How to add Inception-Res block and Dense-Inception block in 3D U-Net Layers
Hi @mohd akmal masud, You can implement the Inception-Res and Dense Inception-Res blocks by implementing a custom nested deep l...
How to add Inception-Res block and Dense-Inception block in 3D U-Net Layers
Hi @mohd akmal masud, You can implement the Inception-Res and Dense Inception-Res blocks by implementing a custom nested deep l...
5개월 전 | 0
| 수락됨
답변 있음
when i start matlab, this appears ''Warning: Name is nonexistent or not a directory: C:\OPAL-RT\RT-LAB\2024.1\common\bin '' i want to remove this
Hi @ASIF ALI, You are getting the warning since the directory "C:\OPAL-RT\RT-LAB\2024.1\common\bin" is added to the MATLAB Sear...
when i start matlab, this appears ''Warning: Name is nonexistent or not a directory: C:\OPAL-RT\RT-LAB\2024.1\common\bin '' i want to remove this
Hi @ASIF ALI, You are getting the warning since the directory "C:\OPAL-RT\RT-LAB\2024.1\common\bin" is added to the MATLAB Sear...
5개월 전 | 0
| 수락됨
답변 있음
Variable gets cleared after each simulation step with simulink
Hi @Friedrich, According to the documentation of the setupImpl method, you need to define properties as private properties to a...
Variable gets cleared after each simulation step with simulink
Hi @Friedrich, According to the documentation of the setupImpl method, you need to define properties as private properties to a...
5개월 전 | 0
답변 있음
conedisk problem using bvp4c
Hi @uma, Looking at the screenshots, there are multiple values of M used to plot the graphs for but your function only uses a ...
conedisk problem using bvp4c
Hi @uma, Looking at the screenshots, there are multiple values of M used to plot the graphs for but your function only uses a ...
5개월 전 | 0
답변 있음
Parallel computing on Standalone Desktop App
Hi @Pierpaolo, To deploy MATLAB applications that run in parallel, you need to make sure that the cluster profile of the cluste...
Parallel computing on Standalone Desktop App
Hi @Pierpaolo, To deploy MATLAB applications that run in parallel, you need to make sure that the cluster profile of the cluste...
6개월 전 | 0
| 수락됨
답변 있음
SIngleton implementation without persistent variables
Hi @Rohan, You can create a singleton class without using persistent variables by defining the instance as a constant property....
SIngleton implementation without persistent variables
Hi @Rohan, You can create a singleton class without using persistent variables by defining the instance as a constant property....
6개월 전 | 0
답변 있음
How to create a Cosimulation Block without using Cosimulation Wizard?
Hi @Xuan, Please take a look at the following example, which shows how to create a "Cosimulation Block" using the command-line ...
How to create a Cosimulation Block without using Cosimulation Wizard?
Hi @Xuan, Please take a look at the following example, which shows how to create a "Cosimulation Block" using the command-line ...
6개월 전 | 0
| 수락됨
답변 있음
Arduino Uno Connection in R2024a for Standalone Application
Hi @Nathan Kimmitt, You can refer to the following example for a step-by-step guide on how to create standalone applications fo...
Arduino Uno Connection in R2024a for Standalone Application
Hi @Nathan Kimmitt, You can refer to the following example for a step-by-step guide on how to create standalone applications fo...
6개월 전 | 0
답변 있음
Métodos numéricos en simulink
Hi @Valeria, I'm not sure if your professor wants you to use the Euler's method in Simulink as well. You can solve differential...
Métodos numéricos en simulink
Hi @Valeria, I'm not sure if your professor wants you to use the Euler's method in Simulink as well. You can solve differential...
6개월 전 | 0
답변 있음
What is the difference between oobPredict and predict with ensemble of bagged decision trees?
Hi @Faranak, The "oobPredict" function is used to get a more realistic estimate of the performance of the model. For each data ...
What is the difference between oobPredict and predict with ensemble of bagged decision trees?
Hi @Faranak, The "oobPredict" function is used to get a more realistic estimate of the performance of the model. For each data ...
6개월 전 | 1
| 수락됨
답변 있음
How to communicate with TCSPC via MATLAB?
Hi @Daewon Hwang, If you have downloaded the DLLs from the vendor, you can use the "loadlibrary" function in MATLAB to load the...
How to communicate with TCSPC via MATLAB?
Hi @Daewon Hwang, If you have downloaded the DLLs from the vendor, you can use the "loadlibrary" function in MATLAB to load the...
6개월 전 | 0
답변 있음
unable to incorporate own design Loss function in r2024a
Hi @Petr Kolar, The error occurs since "softmaxLayer" is actually a function and cannot act as a base class for a class. You ca...
unable to incorporate own design Loss function in r2024a
Hi @Petr Kolar, The error occurs since "softmaxLayer" is actually a function and cannot act as a base class for a class. You ca...
6개월 전 | 0
| 수락됨
답변 있음
How I Can Find The HumanActivityData data set contains over 380000 observations of five different physical human activities? from Brian Hu
Hi @Khairul Jauhari, Assuming you are using MATLAB R2024a, I believe you are talking about this example: https://www.mathworks....
How I Can Find The HumanActivityData data set contains over 380000 observations of five different physical human activities? from Brian Hu
Hi @Khairul Jauhari, Assuming you are using MATLAB R2024a, I believe you are talking about this example: https://www.mathworks....
6개월 전 | 0