Community Profile

photo

Nicolas B.


BRUSA Elektronik AG

Last seen: alrededor de 4 años hace Con actividad desde 2018

Estadísticas

All
  • 6 Month Streak
  • Knowledgeable Level 4
  • Promoter
  • Introduction to MATLAB Master
  • Revival Level 1
  • Community Group Solver
  • Thankful Level 1
  • First Answer
  • Solver

Ver insignias

Content Feed

Ver por

Respondida
How to define a multivariable function (for instance an anonymous function) of a number of variables that varies according to the size of an array variable?
I would be you, I would use a vector input and then, you return a vector.

alrededor de 4 años hace | 0

Respondida
normalization cell array [1 -1]
oh I see that you are mixing cell arrays and arrays. With your feature structure, to access the -9 of your first line, you need ...

más de 4 años hace | 1

| aceptada

Respondida
installation guidance for matlab 2019b
you can only install the toolboxes you need. If you are using a user-based license, you can still install your toolboxes later w...

más de 4 años hace | 1

Respondida
How can I rename logsout signals on data inspector on Simulink?
When I want to do so, I use on my Simulink model data bus instead of vectors. So I can set a name per signal by setting a label ...

más de 4 años hace | 0

Respondida
Printing to MATLAB command window using a Python Function
I have never tried this but there is a MATLAB API for python (Calling MATLAB from Python). Than, there is a special way to get c...

más de 4 años hace | 0

Respondida
Fitting data in x,y to a known function
If you have it, I would recommend to use the Curve Fitting Toolbox. You can give it the expected function and it fits the parame...

más de 4 años hace | 0

Respondida
Calculate the time-averaged value every 10 iterations
I'm trying to understand your question. I understand that every 10 iterations, you want to display the average computation time ...

más de 4 años hace | 1

| aceptada

Respondida
I Keep Getting Error "Matrix dimensions must agree"
If you are using *, than it is a matrix multiplication and the size of your matrices must be compatible. If you want to multipl...

más de 4 años hace | 0

Respondida
Is it possible to check logic on more than two things at the same time?
Oh, pay attention what you are using for symbols. Just a friendly reminder: && -> and condition, work only with scalars & -...

más de 4 años hace | 0

Respondida
Index exceeds number of array elements (1)??
Base on your code, I see that at line 13 of ProgramCd, you create V as a scalar because you even ensure that Vi must be of size ...

más de 4 años hace | 0

Respondida
How can I define variable output size of Matlab function in Simulink?
I also experienced that problem. When using the MATLAB Function block, I learned to always define the size of the inputs and out...

más de 4 años hace | 0

Respondida
Create .exe file from GUI using MATLAB Coder
Hi Harryboy, to generate a exe-file from a MATLAB GUI, you need the MATLAB Compiler Toolbox. The MATLAB Coder can generate code...

más de 4 años hace | 0

| aceptada

Respondida
Error using plot, vectors must be same length
I have a question of logic about what you want to plot. Because you want t plot with: x-axis: H, size 69x1 y-axis: c(:, 1), si...

más de 4 años hace | 0

Respondida
how to plot with a or two breaking poing on x axis?
take a look at these File Exchange scripts: Break X Axis Break Y Axis

más de 4 años hace | 0

| aceptada

Respondida
I want to control the variant subsystem using matlab commands/programming
You should follow the configure variant controls section of this page: Define, Configure, and Activate Variants

más de 4 años hace | 0

Respondida
standalone MATLAB executable question
that's not at all a problem. If you don't have the exact same MATLAB version with the compiler toolbox, than, you will have to i...

más de 4 años hace | 0

Respondida
How do i generate a sound directed to one headphone?
try soundsc to do so.

más de 4 años hace | 0

Respondida
load global variable from startup.m
I clearly don't recommend your to do so. Instead, I would add some functions in your standard Matlab path which returns your con...

más de 4 años hace | 0

Respondida
App designer, export an image to word
If you have the report generator, it would be the easiest way to fill a word document. Otherwise, you should use the COM server...

más de 4 años hace | 0

| aceptada

Respondida
Add resources to compile .m
Personnally, I try to always access the files which are encapsulated into my applications without the path. My advice: Use MAT...

más de 4 años hace | 1

Respondida
How to run program on GPU
So the first step is to check whether you have the "Parallel Computing Toolbox" with: ver if the toolbox isn't in the list, th...

más de 4 años hace | 0

Respondida
Change a variable in a function.
I never tried with global variables but, in your case, I would recommend you to set your A has an input. What I understand, all ...

más de 4 años hace | 0

Respondida
State estimator & feedback
This forum is not here to do your homeworks. Take a look at these functions: ss pole ...

más de 4 años hace | 0

| aceptada

Respondida
while-loop condition - arrays equal within a tolerance
for you case, I understand that you want the maximum absolute difference being below a limit? In that case, the "stay in" condi...

más de 4 años hace | 2

| aceptada

Respondida
Resolving Algebraic Loops in SIMULINK models
From my knowledge, the only way to solve an algebraic loop without affecting at all the model is to change your model to remove ...

más de 4 años hace | 0

Respondida
finding roots of equation in matlab
I would be you, I would check whether you don't have any home-made script named roots in your MATLAB path. If you have no idea ...

más de 4 años hace | 1

Respondida
I need a code for red tomato detection from plant
There is a paper about the tomato recognition here. I guess, once you have detected the tomatoes, it's not that difficult to get...

más de 4 años hace | 0

| aceptada

Respondida
Plot Unity Feedback System in MATLAB
If I understand correctly your question, you are trying to plot the step response of this function transfer: Right? Then, wh...

más de 4 años hace | 0

Respondida
from excel file import variables into more mat file.
I would recommend you to read the whole table in excel in once with, for example readmatrix and then, to save it into the mat-fi...

más de 4 años hace | 0

Respondida
how to change a 9 digit number to longitude?
I don't see any "simple" method. I would recommand you to use the following idea: % get each digit in char array digits = dec2...

más de 4 años hace | 0

Cargar más