Infinite_king
Followers: 0 Following: 0
Trying to help the community as much as possible.
C++, C
Spoken Languages:
English, Telugu
Pronouns:
He/him
Statistics
RANK
642
of 295,448
REPUTATION
116
CONTRIBUTIONS
1 Question
87 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
36
RANK
of 20,227
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153,872
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
how do I store a few seconds of an mp3 stream using matlab.net.http?
Hi David Sears, The simplest solution is to download the entire audio and then cut out the unnecessary portion. This can be e...
6 months ago | 0
matlab.engine.EngineError: Unable to connect to MATLAB session 'MATLAB_441'.
Hi Hud Bin, Based on your description, it seems you are attempting to connect to the MATLAB engine from Python using 'matlab....
6 months ago | 1
Different answers on different computers
Hi Eyüp Ege, The matrix values are stored in double-precision floating-point format. This behaviour is due to inherent proble...
6 months ago | 3
I'd like to make several 'figure' window
Hi 가현, The following expression 'plot(t,sys)' will result in an error since 'sys' is a dynamic system model, and the 'plot' f...
6 months ago | 1
| accepted
Error using vertcat Dimensions of arrays being concatenated are not consistent
Hi Tugce, To concatenate A and B vertically, all dimensions except the first must be the same. For example, consider the foll...
6 months ago | 1
Dimension 1 is fixed on the left-hand side but varies on the right ([1 x 1] ~= [:? x 1]).
Hi Federico Avino, The MATLAB Coder was unable to determine that the variable 'index_otv' would always be a scalar, leading t...
7 months ago | 0
Comparing two MATLAB functions inside SIMULINK models
Hi Deepayan Bhadra, If you have access to the source code of the functions, you can copy them and place them in any folder, t...
7 months ago | 0
is possible to Simulink coder Integrate with another base code
Hi KATHIRVEL, Yes, it is possible to integrate generated code into an existing code base. External code snippets can be inclu...
7 months ago | 1
how to output answer in elf file on jeston nano?
Hi HSIU-YUN CHIEN, You can use Python's 'subprocess' library to call executables and capture their output. See the template c...
7 months ago | 0
I am wondering if deep learning training is supported for code generation. I can see how to generate code for using a NNET, but not for the actual training of the NNET.
Hi Dr W Kurt, The code generation was primarily designed for deploying trained models on various hardware platforms. However,...
7 months ago | 1
| accepted
GPU Coder error "Function 'addDependentFile' not supported for code generation."
Hi Tim Van De Looverbosch, Follow the below troubleshooting steps to resolve the issue, Check the code generation environmen...
7 months ago | 0
hey so i need to repeat the code everytime to see and analyze the time responses for 20 different values of k. How can i do it at once and have the output for all the values?
Hi Pragna, You can use 'for' loop to execute the same code on different values. % Store all input values in an array input_...
7 months ago | 2
| accepted
PLC Coder settings: Generate reusable code
Hi Sindre Møller, In the Simulink model 'plcdemo_simple_subsystem_modified.slx', the subsystem's perform very basic operation...
7 months ago | 0
Error in AWGN in MATLAB
Hi James Manns, The function 'awgn'expects 'double' type as input. It seems 'lenna_bits' is of type 'uint8'. So, type casting...
7 months ago | 1
| accepted
Unable to generate C code for Gaussian Process Regression Model
Hi Omer Ali, Here are a few basic things to know about the codegen command "-args" option Unlike MATLAB, C++ is a typed l...
7 months ago | 0
How to call a function in C++ from library(.so) created by code generation?
Hi Hyunjun Hyung, The C library can be used by a C++ program. In fact, many OS libraries are written in C. Therefore, wheneve...
7 months ago | 0
Running parallel code, stuck on "Analyzing and transferring files to workers..."
Hi Mike Pennell, "Analyzing and transferring files to workers." is not an error. By default, batch processing automatically a...
7 months ago | 1
Table to MATRIX data Conversion
Hi Sai Gudlur, It looks like the error is originating from 'table2array' function call. As per the documentation, 'table2arra...
8 months ago | 1
| accepted
subs a value from gpu to a symbolic function
Hi Tuan Hua, The 'subs' function expects one of the following data types as input inplace of 'q1_value'. Data Types: sym | s...
8 months ago | 1
Matlab mex cpp, vectors supported?
Hi Mat Fan, Yes, vectors are supported in MEX. If you want to generate a MEX file from C or C++ code and run it in MATLAB, th...
8 months ago | 0
Use MATLAB Coder to convert matlab code to mex without using multi-threading
Hi 梅花, By default, MATLAB Coder generates code in which the parfor loop body runs in parallel using OpenMP. In the code ge...
8 months ago | 1
Codegeneration of a harness model with multiple referenced models using a library block/chart with exported functions causes build error function is already defined
Hi Karel Viaene, I understand that your model is referencing 2 other models which uses the same library block. When attempting ...
8 months ago | 0
Can I use coder.ceval to call other matlab coded function with dynamic coder::array<> in interface?
Hi Adam Przybyla, It is possible to split the entire code into modules and then generate code for these modules using MATLAB ...
8 months ago | 1
Non-static function in generated code
Hi Piotr Sawko, The function 'mymodel_rt_powd_snf' contains the main logic of the model and may have been generated as an ext...
10 months ago | 0
Simulink Protected Model and coder.cevel()
Hi Joel Handy, To generate a protected model, try setting the dependent source files and header files information separately ...
10 months ago | 0
Building simulink model on Arduino Mega 2560
Hi Filip Poloczek, It seems like there is an error during the build process of your Simulink model for the Arduino Mega 2560 ...
10 months ago | 0
Combined Slip Wheel STI Compile Error
Hi Brandyn Pataki, One possible reason for encountering the error is because of input dimension mismatch. As per the "Combine...
10 months ago | 0
When I used GPUCoder to compile, I reported an error. When I switched to CCoder, this error was not reported.
Hi 梅花, It looks like a read/write permission error. Follow the below troubleshooting steps to possibly resolve the error. Ma...
10 months ago | 1
| accepted
Simulink signal Code generation property
Hi Suleyman, In R2020b, you can set the storage class of a signal using the Code Mapping Editor. Follow the steps below to op...
10 months ago | 0
How can I process a Data for PV array module?
Hi ali burak, Yes, It is possible to simulate the PV array module with 24 hours of data. Follow the steps outlined below, Ga...
10 months ago | 1