![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/26628721_1653568773220_DEF.jpg)
Githin George
2022 年からアクティブ
Followers: 0 Following: 0
Programming Languages:
Python, C++, C, Java, C#, Javascript, SQL, HTML, CSS
Spoken Languages:
English
Python, C++, C, Java, C#, Javascript, SQL, HTML, CSS
Spoken Languages:
English
統計
All
Feeds
回答済み
CustomDisplay functionality for AppDesigner apps
Another workaround I would suggest is to Export your App outside of App Designer and modify the inheritance rule. Multiple Inher...
CustomDisplay functionality for AppDesigner apps
Another workaround I would suggest is to Export your App outside of App Designer and modify the inheritance rule. Multiple Inher...
26日 前 | 0
回答済み
Function working as a matlab script but not working when copied into a simulink block (Matlab Function)
Hi Aswin, I feel that we are missing some elements here, like the inputs and outputs of the MATLAB Function Block, the variable...
Function working as a matlab script but not working when copied into a simulink block (Matlab Function)
Hi Aswin, I feel that we are missing some elements here, like the inputs and outputs of the MATLAB Function Block, the variable...
26日 前 | 0
回答済み
Can a Simulink model inherit Data Dictionary links from libraries blocks within other libraries or subsystem references?
Check out these documentations for "Considerations When Using a Library Dictionary" in MATLAB R2023a and MATLAB R2023b. In R2023...
Can a Simulink model inherit Data Dictionary links from libraries blocks within other libraries or subsystem references?
Check out these documentations for "Considerations When Using a Library Dictionary" in MATLAB R2023a and MATLAB R2023b. In R2023...
27日 前 | 0
回答済み
'mcc' ignoring "-w disable" option
I would recommend using MATLAB’s inbuild “warning” command to see if the issue gets resolved as it is mentioned in the “mcc” doc...
'mcc' ignoring "-w disable" option
I would recommend using MATLAB’s inbuild “warning” command to see if the issue gets resolved as it is mentioned in the “mcc” doc...
約1ヶ月 前 | 0
回答済み
Generation of a unique library code declaration using Embedded coder
Hey Shalaka, I can think of few workarounds that you may want to try: If the functionality is unique across the models, try ...
Generation of a unique library code declaration using Embedded coder
Hey Shalaka, I can think of few workarounds that you may want to try: If the functionality is unique across the models, try ...
約1ヶ月 前 | 0
| 採用済み
回答済み
Can not find TLC file
Hi Sushovan, I do not think that “Level-2 MATLAB S-Functions” are supported for “Rapid Accelerator” simulation because this mod...
Can not find TLC file
Hi Sushovan, I do not think that “Level-2 MATLAB S-Functions” are supported for “Rapid Accelerator” simulation because this mod...
約1ヶ月 前 | 0
回答済み
How to define matrices generated in Stateflow as Fixed size?
Hi Alex, I understand that you are facing 2 issues here: If you specify the corresponding data variables as “variable-size” th...
How to define matrices generated in Stateflow as Fixed size?
Hi Alex, I understand that you are facing 2 issues here: If you specify the corresponding data variables as “variable-size” th...
約1ヶ月 前 | 0
回答済み
Code Generation for Delay block generates continuous if statement for loading initial value
Hi Jake, I think this behaviour in code generation is expected for “Initial Condition through input port” after looking at the ...
Code Generation for Delay block generates continuous if statement for loading initial value
Hi Jake, I think this behaviour in code generation is expected for “Initial Condition through input port” after looking at the ...
約1ヶ月 前 | 0
回答済み
The lane markings appears at the right side of each road, but according to the official tutorial it should be at the road center.
Hi Haver, You can set the “Number of Lanes” parameter to [1 1] and observe that the double solid yellow lane markers appear as ...
The lane markings appears at the right side of each road, but according to the official tutorial it should be at the road center.
Hi Haver, You can set the “Number of Lanes” parameter to [1 1] and observe that the double solid yellow lane markers appear as ...
約1ヶ月 前 | 1
| 採用済み
回答済み
Fastest way to find the values and indices of the entries of a vector X that are closest to each entry of a matrix A.
You can vectorize the operation as shown below: X = 0:0.05:1; % the vector A = rand(5000); % the matrix %% Vectorized Approac...
Fastest way to find the values and indices of the entries of a vector X that are closest to each entry of a matrix A.
You can vectorize the operation as shown below: X = 0:0.05:1; % the vector A = rand(5000); % the matrix %% Vectorized Approac...
2ヶ月 前 | 1
| 採用済み
回答済み
how to clear the diagnostic viewer on call of sim(..)
Hi Stefan, I did come across a way to distinguish diagnositc viewer messages for subsequent simulation runs. You will need to ...
how to clear the diagnostic viewer on call of sim(..)
Hi Stefan, I did come across a way to distinguish diagnositc viewer messages for subsequent simulation runs. You will need to ...
2ヶ月 前 | 0
| 採用済み
回答済み
Can't find where caused this "Unable to compile data properties" error in Simulink
Hello Cheng, I suspect that the issue is arising because the size of the output signal of for your “MATLAB Function Block” cann...
Can't find where caused this "Unable to compile data properties" error in Simulink
Hello Cheng, I suspect that the issue is arising because the size of the output signal of for your “MATLAB Function Block” cann...
2ヶ月 前 | 1
| 採用済み
回答済み
Code Generation Error with S-Function
Hi Serhat, You might have missed adding your dependencies (multiplier.cpp) to your S-Function in the block parameters. This usu...
Code Generation Error with S-Function
Hi Serhat, You might have missed adding your dependencies (multiplier.cpp) to your S-Function in the block parameters. This usu...
2ヶ月 前 | 1
| 採用済み
回答済み
Error with addpath in MATLAB Runtime when Using ROS 2 Custom Messages in a Deployed Application
I am assuming that you are using MATLAB Compiler to create a ROS 2 application which registers custom ROS 2 messages during exec...
Error with addpath in MATLAB Runtime when Using ROS 2 Custom Messages in a Deployed Application
I am assuming that you are using MATLAB Compiler to create a ROS 2 application which registers custom ROS 2 messages during exec...
2ヶ月 前 | 0
| 採用済み
回答済み
S-function parameters must be one or two dimensional nonsparse numeric or character arrays unless the S-function uses a TLC file and has an mdlRTW function
As the error message is suggesting, your S-function may be dealing with types other than one or two dimensional nonsparse numeri...
S-function parameters must be one or two dimensional nonsparse numeric or character arrays unless the S-function uses a TLC file and has an mdlRTW function
As the error message is suggesting, your S-function may be dealing with types other than one or two dimensional nonsparse numeri...
2ヶ月 前 | 0
回答済み
Whay not working saveChanges(DD) in mscript?
Hi Sua, I could find some issues in the script, and I have fixed it. I am making a few assumptions along the way (check the c...
Whay not working saveChanges(DD) in mscript?
Hi Sua, I could find some issues in the script, and I have fixed it. I am making a few assumptions along the way (check the c...
2ヶ月 前 | 0
回答済み
Error:Error evaluating 'InitFcn' callback of MPC block (mask) 'ControlSyst/MPC Controller1'. Callback string is 'impcblock_InitFcn' Caused by: You have connected a signal
Hi Ahmad, I have tried running the model with the “param_init” script that you have provided but it seems that “mpcobj” (MPC Co...
Error:Error evaluating 'InitFcn' callback of MPC block (mask) 'ControlSyst/MPC Controller1'. Callback string is 'impcblock_InitFcn' Caused by: You have connected a signal
Hi Ahmad, I have tried running the model with the “param_init” script that you have provided but it seems that “mpcobj” (MPC Co...
2ヶ月 前 | 0
回答済み
Array of SimulationInput objects gets modified upon running with sim command
Hi Afzal, Without looking at the implementation for the “PreSimFcn” and “PostSimFcn” it is difficult to predict how the “simIn”...
Array of SimulationInput objects gets modified upon running with sim command
Hi Afzal, Without looking at the implementation for the “PreSimFcn” and “PostSimFcn” it is difficult to predict how the “simIn”...
3ヶ月 前 | 0
回答済み
Simulation output differs when optional modules are enabled
Hi Thomas, As mentioned by Paul, there could be various reasons for the difference in simulation outputs, such as the block ex...
Simulation output differs when optional modules are enabled
Hi Thomas, As mentioned by Paul, there could be various reasons for the difference in simulation outputs, such as the block ex...
3ヶ月 前 | 0
回答済み
DSP HDL Coder - NCO mixed types error
Hi Mark, It Seems that HDL Code Generation is not supported for the “NCO” block if the input types are not “fixed-point”. As pe...
DSP HDL Coder - NCO mixed types error
Hi Mark, It Seems that HDL Code Generation is not supported for the “NCO” block if the input types are not “fixed-point”. As pe...
3ヶ月 前 | 0
回答済み
importhdl never ends and hangs on in Parsing
Hi Julian, The message “Parsing <a href="matlab:edit('')” seems to suggest that there could be something wrong with the input f...
importhdl never ends and hangs on in Parsing
Hi Julian, The message “Parsing <a href="matlab:edit('')” seems to suggest that there could be something wrong with the input f...
3ヶ月 前 | 0
回答済み
Model Advisor "Fix" Button Disabled in Toolbar but functional via "Fix this Check"
Hi Natalie, I was able to come across the function “setActionEnable” to enable the “fix” icon in the toolbar for the custom Mod...
Model Advisor "Fix" Button Disabled in Toolbar but functional via "Fix this Check"
Hi Natalie, I was able to come across the function “setActionEnable” to enable the “fix” icon in the toolbar for the custom Mod...
3ヶ月 前 | 0
回答済み
Remote address for Simulink TCP/IP block as parameter/variable from workspace?
Hi Wilfried, You can set the “Remote Address” parameter of the TCP/IP Block from a MATLAB script in the following way. blockPa...
Remote address for Simulink TCP/IP block as parameter/variable from workspace?
Hi Wilfried, You can set the “Remote Address” parameter of the TCP/IP Block from a MATLAB script in the following way. blockPa...
5ヶ月 前 | 0
回答済み
Matlab migration from 2019b to 2021b
Hello Poornachandran, Migrating Simulink models to a newer version involves several considerations. While there aren't any defi...
Matlab migration from 2019b to 2021b
Hello Poornachandran, Migrating Simulink models to a newer version involves several considerations. While there aren't any defi...
5ヶ月 前 | 0
回答済み
Protected model fails to build
Hello Robrecht, I have a created an example model that implements a wrapper inlined S-Function as described in the documentatio...
Protected model fails to build
Hello Robrecht, I have a created an example model that implements a wrapper inlined S-Function as described in the documentatio...
5ヶ月 前 | 0
回答済み
Build issues for custom target file in 2024b verions. Error in "emmintrin.h"
Hello Kiruthika, The file "emmintrin.h" is a header file associated with Intel x86_64 instruction set extensions for SIMD, spe...
Build issues for custom target file in 2024b verions. Error in "emmintrin.h"
Hello Kiruthika, The file "emmintrin.h" is a header file associated with Intel x86_64 instruction set extensions for SIMD, spe...
5ヶ月 前 | 0
| 採用済み
回答済み
After each restart, the parameters of the multimeter blocks change randomly (Simulink Simscape Electrical - Specialized Power Systems)
Hello Torben, I have never encountered a similar issue with the “Multimeter Block”. From your description this seems like a bug...
After each restart, the parameters of the multimeter blocks change randomly (Simulink Simscape Electrical - Specialized Power Systems)
Hello Torben, I have never encountered a similar issue with the “Multimeter Block”. From your description this seems like a bug...
5ヶ月 前 | 0
| 採用済み
回答済み
Initfcn callback wont update during the sensitivity analysis of my model
Hi Angelo, The issue seems to be reproducible only for variables in a model/block/mask callback and I was unable to find any li...
Initfcn callback wont update during the sensitivity analysis of my model
Hi Angelo, The issue seems to be reproducible only for variables in a model/block/mask callback and I was unable to find any li...
5ヶ月 前 | 0
回答済み
IP Address in Hardware Implementation (External Mode in Configuration Parameters) is not used for code generation
Hi Lars, It seems like there is no option to change the IP address of the target board from the Configuration Parameters Dialog...
IP Address in Hardware Implementation (External Mode in Configuration Parameters) is not used for code generation
Hi Lars, It seems like there is no option to change the IP address of the target board from the Configuration Parameters Dialog...
5ヶ月 前 | 0
回答済み
Simulation output missing in Test manager, when using Test sequence input, for baseline testing
Hello Anand, Given that you are able to observe the “Simulation Outputs” in another system and not able to view the same in you...
Simulation output missing in Test manager, when using Test sequence input, for baseline testing
Hello Anand, Given that you are able to observe the “Simulation Outputs” in another system and not able to view the same in you...
5ヶ月 前 | 1