Community Profile

photo

Infinite_king


Last seen: ein Tag vor Aktiv seit 2023

Followers: 0   Following: 0

Trying to help the community as much as possible.

Programming Languages:
C++, C
Spoken Languages:
English, Telugu
Pronouns:
He/him

Statistiken

  • 6 Month Streak
  • Thankful Level 1
  • Knowledgeable Level 2
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
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...

ein Tag vor | 0

Beantwortet
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...

9 Tage vor | 0

Beantwortet
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...

10 Tage vor | 0

Beantwortet
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...

11 Tage vor | 1

Beantwortet
Table to MATRIX data Conversion
Hi Sai Gudlur, It looks like the error is originating from 'table2array' function call. As per the documentation, 'table2arra...

26 Tage vor | 0

| akzeptiert

Beantwortet
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...

etwa ein Monat vor | 1

Beantwortet
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...

etwa ein Monat vor | 0

Beantwortet
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...

etwa ein Monat vor | 0

Beantwortet
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 ...

etwa ein Monat vor | 0

Beantwortet
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 ...

etwa ein Monat vor | 1

Beantwortet
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...

3 Monate vor | 0

Beantwortet
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 ...

3 Monate vor | 0

Beantwortet
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 ...

3 Monate vor | 0

Beantwortet
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...

3 Monate vor | 0

Beantwortet
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...

3 Monate vor | 0

| akzeptiert

Beantwortet
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...

3 Monate vor | 0

Beantwortet
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...

3 Monate vor | 1

Beantwortet
integral di e^(ax^3+bx) Dopo aver trovato l'integrale fare il Sviluppo di Taylor secondo grado X =0
Hi LOIC CABREL, Risponderò alla domanda in inglese. Utilizza Google Translate per tradurre la risposta nella tua lingua local...

3 Monate vor | 1

Beantwortet
Matlab Mobile serialport/serial
Hi Maciej Solarczyk, It seems like you're trying to use MATLAB Mobile on an Android device to read temperature values from a ...

4 Monate vor | 0

Beantwortet
how to use my code generation C/C++ to my windows form project in visual studio?
Hi asep kurniawan, Checkout the following tutorial, https://www.mathworks.com/help/coder/ug/use-a-c-dynamic-library-in-micros...

4 Monate vor | 1

Beantwortet
Issue installing standalone SPM (Ubuntu 20.04)
Hi dubs, It appears that the issue is related to a compatibility problem between SPM and the MATLAB Runtime. Here are some tr...

4 Monate vor | 0

Beantwortet
Error C MEX S-function
Hi Engineer, Follow the general troubleshooting steps below to possibly resolve the issue, Check Simcenter Amesim license ...

4 Monate vor | 0

Beantwortet
How to run and close Ansysedt from Matlab?
Hi Khalid Ibne Masood, As per my understanding you are calling 'Ansys EDT' from MATLAB, which then runs the python file. Howe...

4 Monate vor | 0

Beantwortet
Matlab Engine API for python
Hi Nalla Muthu, The issue appears to be related to a lack of directory permissions. To potentially resolve the issue, you can...

4 Monate vor | 0

Beantwortet
MATLAB API engine for python shows less data
Hi ashraful alam, The possible reason for this discrepancy is differences in data or input parameters between running the MAT...

4 Monate vor | 0

Beantwortet
How to install coolprop in matlab on mac
Hi Qi Nie, It looks like the error is emanating from the call to 'clang.' The prerequisites for the 'Coolprop' wrapper includ...

4 Monate vor | 0

Beantwortet
How to use OpenMP properly from C++ static library?
Hi, As per my understanding you are able to use the library from MATLAB but the operations are not being performed in paralle...

4 Monate vor | 1

Beantwortet
The packaging step in Library Compiler is not finishing?
Hi Scott Lynch, I understand the you are trying to compile MATLAB function into a Python Package using Library Compiler app a...

4 Monate vor | 0

Beantwortet
does gpu coder uses gpu without using gpuArray in matlab?
Hi Sungjin Wie, The short answers is yes. CUDA uses GPU even if you don't use 'gpuArrays'. Infact, GPU Coder will not support...

4 Monate vor | 0

Beantwortet
STM32F4xx Linker Error when using Static Library: is incompatible with i386:x86-64 output
Hi Tim Scheuermann, I understand that you are facing compilation errors in Simulink's External Mode with your STM32 Nucleo F4...

4 Monate vor | 0

Mehr laden