Beantwortet
Simulink code generation for tcpclient
Looks like code generation support for tcpclient was added in R2019B. You may just have a configuration issue in your R2020A te...

etwa 2 Jahre vor | 0

Beantwortet
Displacements and velocity from acceleration integration (accelerometer data)
Integration naturally has some error when integrating a sampled signal because the integration algorithm has to make assumptions...

etwa 2 Jahre vor | 0

Frage


Does buildtool offer parallel task execution
Very little information is available on the new buildtool and buildplan features in R2022B. I cannot install R2022B at this tim...

etwa 2 Jahre vor | 1 Antwort | 1

1

Antwort

Beantwortet
How to change simulink variable from matlab script?
Here is a link to documentation on working with model workspace variables: https://www.mathworks.com/help/simulink/ug/change-...

etwa 2 Jahre vor | 1

| akzeptiert

Beantwortet
The Premultiply Convention in Geometric Transformations does not support C/C++ code generation?
This is just a notational thing right? Why would it affect how the code is generated and executed? The code generation and exe...

etwa 2 Jahre vor | 0

Beantwortet
How to find the correlation between 14 subjects
xcorr2 is the MATLAB function for 2D cross correlation

etwa 2 Jahre vor | 0

Beantwortet
Loop through ,mat files and find a specific column with conditions
If you have MAT files you load them using the load function. No need to use fopen or fread.

etwa 2 Jahre vor | 0

Beantwortet
Non-compatibility of Microsoft Visual C++ 2022 with CUDA 11.6/11.8 toolkit on MATLAB R2022a
The GPU Coder support for VS 2022 is not yet in R2022A or R2022B yet, so that might be the problem with the combination of produ...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
Trying to save the outputs of a for loop
The first value of R in the loop is 20, and you are reassigning/overwriting zeros to e on every pass through the loop. Before t...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
Fiber detection Hough Transform
Very small and fine features. You might try the 2D FFT and see if this provides a better way to estimate rotation.

etwa 2 Jahre vor | 0

Beantwortet
read text file - header and numerical part
Try detectImportOptions and readtable, setting the VariableNamesLine of the options structure to the line that you are looking f...

etwa 2 Jahre vor | 0

Beantwortet
How to create RGB image from multispectral image?
I don't see in the documentation of the image function that it accepts a parameter list like you are using. You can combine the...

etwa 2 Jahre vor | 0

Beantwortet
the speed of gif is very slow!
Have you tried using the performance analysis tool in the MATLAB Editor to identify where the most time is being spent and this ...

etwa 2 Jahre vor | 0

Beantwortet
How to check if a generated number is between 2 values
You can use the logical operator & to combine multiple tests. You can either get an index vector with the results of all tests ...

etwa 2 Jahre vor | 0

Beantwortet
When I try to use the function 'magic(n)', Matlab says that the execution of the script magic is not supported
If your magic.m file does not have "function" at the top, then it is a script and not a function. Scripts cannot be passed argu...

etwa 2 Jahre vor | 0

Beantwortet
Simulink variable signal size
You cannot change the size of signals during a simulation run. That is what your MATLAB function is doing, trying to add new da...

etwa 2 Jahre vor | 0

Beantwortet
How do you create a Stateflow Chart with inputs and outputs being vectors, which change every timestep?
When you add an input or output to a chart block in the Simulink model, you can set the size to something other than -1. But ma...

etwa 2 Jahre vor | 0

Beantwortet
How to rotate or mirror the contents in the figure with axes?
Can you re-plot with new y values, y = 500 - y? Basically reverse the order of the y values before plotting.

etwa 2 Jahre vor | 0

Beantwortet
Plotting a bird using mathematical equation issue.
The radius values Rk do not seem to be used properly. Are you calling scatter correctly? Looks like maybe you need three argum...

etwa 2 Jahre vor | 0

Beantwortet
How to import C++ and Java code into Simulink environment using S function?
You could start here: https://www.mathworks.com/help/matlab/matlab_external/integrate-matlab-with-external-programming-language...

etwa 2 Jahre vor | 0

Beantwortet
read multiple .csv files in 'for loop', extract and write data to .txt
So building on Stephen's comment. You may also get better results using readmatrix or readtable than xlsread. % Read multiple ...

etwa 2 Jahre vor | 0

Beantwortet
I'm trying to display a 2D table
To read the rows and columns of a two dimensional table you need to use two indices: In your example: tableau(1,1) == 1 tab...

etwa 2 Jahre vor | 1

| akzeptiert

Beantwortet
Simple question but i can't do it i just started using matlab
x = 1:5; a = 2; y = a.^x; plot(x, y);

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
Get the displacement component which is perpendicular to the triangle (finite element)
d1 = [0.000131475 -0.000706995 0.000754736] You can make one of the vectors the origin by subtracting it from the other two, t...

etwa 2 Jahre vor | 1

| akzeptiert

Beantwortet
Parameter and constant management for embedded coder
You should look over the examples included for Embedded Coder. There are some dealing with tunable parameters. Usually you nee...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
Could somebody help me to implement an algorithm with stateflow?
Please start with the Stateflow Onramp Training on the Mathworks website. Then try to implement your algorithm and if you have ...

etwa 2 Jahre vor | 0

Beantwortet
hermetic compressor simulation using simulink
You can start with the Simulink Onramp training on the Mathworks website. Then attempt to apply what you have learned to the pr...

etwa 2 Jahre vor | 0

Beantwortet
Problem in Signal Processing in MATLAB Course
What licenses do you have? The task seems to be trying to find Coder products which are not commonly used in student classes. ...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
looping in all audio files
dir('*.wav') will return a struct containing all the audio file names. Then you can pass the name field of each element of that...

mehr als 2 Jahre vor | 0

Beantwortet
Is it possible to inline Code Gen of top level Simulink model containing model references?
For generating C or C++ code using Embedded Coder, if you right click on the subsystem block, go to Block Parameters, and go to ...

mehr als 2 Jahre vor | 0

Mehr laden