Community Profile

photo

Nicolas B.


BRUSA Elektronik AG

Last seen: circa 4 anni fa Attivo dal 2018

Statistiche

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

Visualizza badge

Content Feed

Visto da

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

circa 4 anni fa | 0

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

oltre 4 anni fa | 1

| accettato

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

oltre 4 anni fa | 1

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

oltre 4 anni fa | 0

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

oltre 4 anni fa | 0

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

oltre 4 anni fa | 0

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

oltre 4 anni fa | 1

| accettato

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

oltre 4 anni fa | 0

Risposto
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 & -...

oltre 4 anni fa | 0

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

oltre 4 anni fa | 0

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

oltre 4 anni fa | 0

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

oltre 4 anni fa | 0

| accettato

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

oltre 4 anni fa | 0

Risposto
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

oltre 4 anni fa | 0

| accettato

Risposto
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

oltre 4 anni fa | 0

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

oltre 4 anni fa | 0

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

oltre 4 anni fa | 0

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

oltre 4 anni fa | 0

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

oltre 4 anni fa | 0

| accettato

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

oltre 4 anni fa | 1

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

oltre 4 anni fa | 0

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

oltre 4 anni fa | 0

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

oltre 4 anni fa | 0

| accettato

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

oltre 4 anni fa | 2

| accettato

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

oltre 4 anni fa | 0

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

oltre 4 anni fa | 1

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

oltre 4 anni fa | 0

| accettato

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

oltre 4 anni fa | 0

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

oltre 4 anni fa | 0

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

oltre 4 anni fa | 0

Carica altro