![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/28838377_1673442011060_DEF.jpg)
Piyush
MathWorks
Followers: 0 Following: 0
My name is Piyush Kumar and i am an EDG intern at MathWorks. The opinions I express on this forum are my own, and not representative of MathWorks.
Programming Languages:
C++, C, Java, MATLAB
Spoken Languages:
English, Hindi
Professional Interests:
Programming, Software Development Tools, Simulink
C++, C, Java, MATLAB
Spoken Languages:
English, Hindi
Professional Interests:
Programming, Software Development Tools, Simulink
統計
MATLAB Answers
0 質問
17 回答
ランク
of 157,687
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
How to avoid overlapping of the figures and the tiledlayout global title?
Hello, I understand that you are facing issues in plotting subplots and your titles are getting overlapped. As it is visible, ...
How to avoid overlapping of the figures and the tiledlayout global title?
Hello, I understand that you are facing issues in plotting subplots and your titles are getting overlapped. As it is visible, ...
1年以上 前 | 0
回答済み
Implementing MP3 audio codec on MATLAB
Hello, I understand that you want to convert WAV to MP3 compression and decompression. For this, you can refer this MATLAB ...
Implementing MP3 audio codec on MATLAB
Hello, I understand that you want to convert WAV to MP3 compression and decompression. For this, you can refer this MATLAB ...
1年以上 前 | 0
回答済み
TLC error when generating Simulink model code
Hello, I understand that you are receiving errors related to TLC while you are trying to generate code from you Simulink model...
TLC error when generating Simulink model code
Hello, I understand that you are receiving errors related to TLC while you are trying to generate code from you Simulink model...
1年以上 前 | 0
回答済み
cne mode in app designer
If you want to add a slider to the image obtained, use the ‘unicontrol’ function. Refer to this link for the syntax and exampl...
cne mode in app designer
If you want to add a slider to the image obtained, use the ‘unicontrol’ function. Refer to this link for the syntax and exampl...
2年弱 前 | 0
| 採用済み
回答済み
changing from contour to filled on pcolor plot
Refer to the answer given in the following question. pcolor and contour in the same map - MATLAB Answers - MATLAB Central (mat...
changing from contour to filled on pcolor plot
Refer to the answer given in the following question. pcolor and contour in the same map - MATLAB Answers - MATLAB Central (mat...
2年弱 前 | 0
回答済み
Export a 3d surface to .stl
Create STL file from triangulation - MATLAB stlwrite (mathworks.com) Refer to the above link for creating stl file from triang...
Export a 3d surface to .stl
Create STL file from triangulation - MATLAB stlwrite (mathworks.com) Refer to the above link for creating stl file from triang...
2年弱 前 | 1
回答済み
How do I analyse the needed amount of dynamic memory for a Simulink Model?
Try the following ways to analyse the dynamic memory requirements- Run the Simulink model and type the command “memory” in MAT...
How do I analyse the needed amount of dynamic memory for a Simulink Model?
Try the following ways to analyse the dynamic memory requirements- Run the Simulink model and type the command “memory” in MAT...
2年弱 前 | 0
回答済み
error loading shared libraries: libicuuc.so.69
Try downloading and installing libicuuc.so.16 on your Linux system- sudo apt update sudo apt install libicu-dev This will ...
error loading shared libraries: libicuuc.so.69
Try downloading and installing libicuuc.so.16 on your Linux system- sudo apt update sudo apt install libicu-dev This will ...
2年弱 前 | 0
回答済み
STM32F407VGT6U (DISC1) External mode : Could not connect to target application: XCP internal error: timeout expired, in response to XCP CONNECT command
Try out the following – Check if the windows firewall is not blocking the application. Check if any forced update or reboot...
STM32F407VGT6U (DISC1) External mode : Could not connect to target application: XCP internal error: timeout expired, in response to XCP CONNECT command
Try out the following – Check if the windows firewall is not blocking the application. Check if any forced update or reboot...
2年弱 前 | 0
回答済み
Simulink STM32F4xx Build Linker Error
Here are some possible solutions that may work. Since you are getting linking error- Check that all the source files links hav...
Simulink STM32F4xx Build Linker Error
Here are some possible solutions that may work. Since you are getting linking error- Check that all the source files links hav...
2年弱 前 | 0
回答済み
using laptop A with usb devices that are controlled by laptop B with MATLAB
I am sharing some possible solutions that may help- If you can carry the usb devices to your home, then please connect it to y...
using laptop A with usb devices that are controlled by laptop B with MATLAB
I am sharing some possible solutions that may help- If you can carry the usb devices to your home, then please connect it to y...
2年弱 前 | 0
回答済み
live script from file exchange not opening properly (R2023a)
I tried to open the first live-script file that you shared. It opened properly in my system. It’s same as yours ( MATLAB (R2023a...
live script from file exchange not opening properly (R2023a)
I tried to open the first live-script file that you shared. It opened properly in my system. It’s same as yours ( MATLAB (R2023a...
2年弱 前 | 0
回答済み
How to Open 8k videos in matlab
There is a troubleshooting section mentioned here for “VideoReader” function Read Video Files - MATLAB & Simulink (mathworks.c...
How to Open 8k videos in matlab
There is a troubleshooting section mentioned here for “VideoReader” function Read Video Files - MATLAB & Simulink (mathworks.c...
2年弱 前 | 0
回答済み
Implement multiples plots [figures()] into one figure()
You can do it using “subplots” function. Link for the function is given below: Create axes in tiled positions - MATLAB subplot...
Implement multiples plots [figures()] into one figure()
You can do it using “subplots” function. Link for the function is given below: Create axes in tiled positions - MATLAB subplot...
2年弱 前 | 0
| 採用済み
回答済み
There's a way that I can count the percentage of appearance of a number in MATLAB table??
There is a function named “tabulate” that displays the frequency table of the data in the vector x.If we do conversion of table ...
There's a way that I can count the percentage of appearance of a number in MATLAB table??
There is a function named “tabulate” that displays the frequency table of the data in the vector x.If we do conversion of table ...
2年弱 前 | 0
回答済み
MATLAB app won't run when called from Python called from batch file
Try to follow the steps given in the below link - Install MATLAB Engine API for Python - MATLAB & Simulink (mathworks.com)
MATLAB app won't run when called from Python called from batch file
Try to follow the steps given in the below link - Install MATLAB Engine API for Python - MATLAB & Simulink (mathworks.com)
2年弱 前 | 0
回答済み
how to add all parentheses in symbolic logic expression
When you have long logic phrase, you may use newlines to improve readability. Place operators at the end of a line, rather than ...
how to add all parentheses in symbolic logic expression
When you have long logic phrase, you may use newlines to improve readability. Place operators at the end of a line, rather than ...
2年弱 前 | 0