photo

Swastik Sarkar


Last seen: 25 days 前 自 2023 起处于活动状态

Followers: 0   Following: 0

Programming Languages:
Python, C++, C, Javascript, Go, MATLAB, SQL, HTML, CSS, Shell
Spoken Languages:
English, Hindi, Bengali
Pronouns:
He/him

统计学

All
MATLAB Answers

0 个提问
109 个回答

Cody

0 个问题
2 个答案

排名
1,043
of 299,722

声誉
72

贡献数
0 个提问
109 个回答

回答接受率
0.00%

收到投票数
10

排名
 of 20,790

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
84,021
of 165,604

贡献数
0 个问题
2 个答案

评分
30

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 3
  • Solver
  • 6 Month Streak
  • First Answer

查看徽章

Feeds

排序方式:

已回答
Display "hello world" in GUI's app.systemlog
Hi @Kyle, I assume that the reference to SystemLog pertains to the following UI component: https://www.mathworks.com/help/slre...

2 months 前 | 0

已回答
Simulink model comparison with 2022b
Hi @Amit, To compare 2 Simulink models and generate a report programattically, you are looking for the visdiff function. Follo...

2 months 前 | 0

已回答
Recurrent server error message while submitting solution for a given problem in Cody
Hi @Nicolas Douillet, I have encountered and resolved the issue you described. Upon investigation, it appears that the server e...

2 months 前 | 1

| 已接受

已解决


Compute the nth Pythagorean prime
Pythagorean primes have the form p = 4n+1, where n is an integer, and they can be written as the sum of squares of two integers....

2 months 前

已回答
Simulink embeded coder - Cross compiler on Windows targeted to Linux machine
Hi @Forrest Chen, Given that the development environment is based on Windows, a practical approach would be to compile the gene...

2 months 前 | 0

已回答
App Designer GUI Deployment on STM32MP with Yocto: Standalone and Web App Support?
Hi @Varun Rao, Both the Standalone Application Deployment and MCC (MATLAB Compiler) workflows rely on the MATLAB Compiler infra...

2 months 前 | 0

已回答
matlab function call class in workspace
Hi @Haonan Xu, In MATLAB Level-2 S-functions, the recommended method for maintaining persistent data across simulation steps is...

2 months 前 | 0

已回答
MATLAB runtime crash spring boot / kafka / rocksdb
Hi @Steven Dewar, When the MATLAB Compiler Runtime (MCR) is initialized, it attaches to the already running JVM process started...

2 months 前 | 0

已回答
How can sync a video to the plot?
Hi @Sujan Ponnappa, There appear to be a few inconsistencies in the current implementation. The following adjustments may help ...

2 months 前 | 0

已回答
transformation of a rotary coordinate system to a static coordinate system
Hi @Tomas Makar, There appears to be no simpler approach than iterating through all values and applying a rotation matrix with ...

2 months 前 | 0

已回答
Reactis Api showing load library error while executing reactis function through matlab.
Hi @Sonali Patil, To resolve the compiler issue, it is recommended to install the MinGW-w64 Compiler using the official MATLAB ...

3 months 前 | 0

已回答
extract the j-th component of the vector resulting from the matrix product.
Hi @Tommaso Delicato, In this case, it may be more convenient to compute the full vectors for both (A⊤x) & (A+Σx/√x⊤Σx)and then...

3 months 前 | 0

已回答
How can I change this code to make a header for each column like for instance accel X, accel Y, accel Z?
Hi @WAN NOR NAZIRA MUSTAPA KAMAL, The appropriate data type you are looking for is the table in MATLAB. This data structure all...

3 months 前 | 0

已回答
What can I add in this code for me to plot the data that I obtained in real time graph?
Hi @WAN NOR NAZIRA MUSTAPA KAMAL, To plot real-time data from the sensor in MATLAB, the animatedline function can be used to dy...

3 months 前 | 0

已回答
Regarding Matlab Compiler SDK toolbox
Hi @Satyaki Chaudhuri, There are two distinct workflows corresponding to the products you mentioned: MATLAB Compiler MATLAB C...

3 months 前 | 0

已回答
mqttclient unable to establish a connection with broker
Hi @Nikitas, Since it has been confirmed that the broker connection works via MQTT Explorer, it can be assumed that the host is...

3 months 前 | 0

已回答
Latest version of MATLABConnector Linux problem
Hi @Michal, It has been observed that this warning typically appears only during the initial launch of MATLAB, when the MathWor...

3 months 前 | 0

已回答
Matlab Runtime correct version installed on Linux environment but getting error message could not find the correct version.
Hi @nikhil koyyodan, The issue may stem from an incorrect configuration of the LD_LIBRARY_PATH environment variable when execut...

3 months 前 | 0

已回答
Simulink and Git - Compare branches
Hello, To identify files with differing content between two branches, the following command may be used: git diff branch1..bra...

3 months 前 | 0

已回答
how to do iteration starting with a known number
Hi Mohammed, I believe this can be approached in two ways depending on whether you want to manually iterate or use MATLAB's Opt...

3 months 前 | 0

已回答
parfeval or batch processing
Hi Muna, For large-scale parallel tasks like 10,000 iterations, using batch is generally better than parfeval because batch sub...

3 months 前 | 0

已回答
GPU/CPU Profiling
Hi Gregory, I wanted to share that there is now a dedicated approach to measure the GPU-specific performance of MATLAB code. Th...

3 months 前 | 0

已回答
how can I disable javadoc call when using MCC to build javabuilder app?
Hi Jim, I was also looking for an option to disable the generation of Javadocs during the mcc compilation process, but no such ...

3 months 前 | 0

已回答
CTRL + ALT not providing }
Hi @Alexander Szambor, Ctrl + Alt + 0 resets the zoom to 100%. However, executing the following code disables this shortcut: s...

9 months 前 | 1

| 已接受

已回答
How to open a python GUI with matlab code?
Hi @Bradley, Based on the description provided, I assume the Python script is being executed in the Anaconda Powershell using a...

9 months 前 | 0

已回答
Describe the methods of the class COM.Apwn_Document in more detail
Hi @C, Running actxserver returns a COM object with specific properties, methods, events, and interfaces. The methods of the ob...

9 months 前 | 0

已回答
Coronary Artery Edge Detection
Hi @Uluç Ali, Several methods are available to improve the workflow for edge detection, which may require improvisation based o...

9 months 前 | 1

已回答
Wavelet Scattering Transform Errror
Hi @Erick Axel, The error occurs because a high QualityFactor results in wavelets that are too narrowly focused in frequency, p...

9 months 前 | 0

已回答
Linux -nosplash doesn't work
Hi @dormant, For running a MATLAB script in a non-interactive workflow, consider using the -batch startup option, which prevent...

9 months 前 | 1

| 已接受

已回答
How to add a custom string to a Matlab script's output?
Hi @Renat, It is possible to override the built-in function responsible for displaying data to achieve the desired prefix on ea...

9 months 前 | 0

加载更多