![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/156576_1522075955113_DEF.jpg)
Michael
Bachmann electronic GmbH
Followers: 0 Following: 0
Estadística
1 Pregunta
10 Respuestas
0 Problemas
10 Soluciones
CLASIFICACIÓN
2.761
of 297.016
REPUTACIÓN
22
CONTRIBUCIONES
1 Pregunta
10 Respuestas
ACEPTACIÓN DE RESPUESTAS
100.0%
VOTOS RECIBIDOS
3
CLASIFICACIÓN
of 20.419
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
35.711
of 157.725
CONTRIBUCIONES
0 Problemas
10 Soluciones
PUNTUACIÓN
111
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Can you call Simulink models recursively?
Hi Jan, I am not sure if I understand you correctly. But maybe this could be a solution for your task?
3 meses hace | 0
| aceptada
Calculate Mean of vector in more decimals
3.3333 is only the display of the variable 'ans'. The result of the calculation has better accuracy. Type format long and you ...
9 meses hace | 0
| aceptada
Conditional Question Matlab Disagreement
I think you are right and your teacher is wrong. MATLAB evaluates this expression from the left to the right (see chapter "Oper...
más de 1 año hace | 1
Is there a 64 bit version of Matlab 2015a available for download?
Dont't worry about the labeling of the button for downloading in the MathWorks homepage. If you are running the installing appli...
más de 1 año hace | 0
How to set a sample time in a Discrete Transfer Fcn??
Per default the sample time of this block is (-1). This means the sample time is inherited from the signal at the input of the b...
más de 1 año hace | 1
Code generation with Embedded Coder
I think this is an issue of the block reduction optimization. In the configuration parameters move to Simulation Target --> ......
más de 1 año hace | 0
Target Language Compiler (TLC) alternatives for custom inline L2 sfunctions in Simulink.
As far as I know there is no possibility to generate C/C++ code from a Level -2 MATLAB S-Function without writing an associated ...
más de 1 año hace | 1
| aceptada
Datetime arithmetic in simulink
You can do some arithmetics with datetime data type. For your example it is possible to add a duration to a datetime. dt0 = dat...
más de 1 año hace | 0
Matrix array in a strange format
Your matrix "val" is a sparse matrix. You can convert it to a full storage matrix with the function "full". A = full(val)
más de 1 año hace | 0
how to find unconnect goto block and from block in the simulink model use script
I think you should find a matching of the "GotoTag" in Goto blocks and From blocks. First find all your Goto and From blocks in...
más de 1 año hace | 0
| aceptada
Pregunta
How to change horizontal alignment of column names in UITable
I know I can use the uistyle function to change the horizontal alignment of text of each cell of an UITable. But I am struggling...
más de 1 año hace | 1 respuesta | 0
1
respuestaResuelto
Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...
más de 3 años hace
Resuelto
MATLAB Basic: rounding
Do rounding near to zero Example: -8.8, answer -8 +8.1 answer 8
casi 6 años hace
Resuelto
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
casi 13 años hace
Resuelto
How to find the position of an element in a vector without using the find function
Write a function posX=findPosition(x,y) where x is a vector and y is the number that you are searching for. Examples: fin...
casi 13 años hace
Resuelto
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
casi 13 años hace
Resuelto
Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...
casi 13 años hace
Resuelto
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
casi 13 años hace
Resuelto
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
casi 13 años hace