Estadística
2 Problemas
44 Soluciones
CLASIFICACIÓN
158.166
of 295.495
REPUTACIÓN
0
CONTRIBUCIONES
16 Preguntas
1 Respuesta
ACEPTACIÓN DE RESPUESTAS
31.25%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.240
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
9.374
of 153.991
CONTRIBUCIONES
2 Problemas
44 Soluciones
PUNTUACIÓN
560
NÚMERO DE INSIGNIAS
4
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
How to change color of a block in simulink when you perform copy
I'm trying to create a way to automatically change block colors when you do a copy in the model. I know how to change the color...
más de 9 años hace | 1 respuesta | 0
1
respuestaPregunta
Find Triggered subsystem in a simulink model
Is there a command in matlab to find Subsystems that have trigger port. I want to replace a different timing raster for all the ...
alrededor de 11 años hace | 1 respuesta | 0
1
respuestaPregunta
How to use regexp to split the filepath
file path= C:\Data\Project\PCOD\PCOD_Model.mdl I want the model path only like C:\Data\Project\PCOD\.... how can I do it
más de 11 años hace | 1 respuesta | 0
1
respuestaPregunta
S Function Error while generationg mex file
I have a header file with a prototype of a function( myfunc)and a function ponter to it. The c code generated with call through ...
más de 11 años hace | 0 respuestas | 0
0
respuestasPregunta
Running PostLoadFcn of a Model
I have a m file added to the PostLoadFcn of the model. The m file is trying to load a .mat file in the working directory and I g...
más de 11 años hace | 0 respuestas | 0
0
respuestasPregunta
Load the fields of a structure
I have a structure A.params.data ans = r: [1x1 Simulink.Parameter] s: [1x1 Simulink.Parameter] I want to l...
más de 11 años hace | 0 respuestas | 0
0
respuestasPregunta
Getting the datatype of a signal from simulink
I am trying to get the datatype of enumerated signal from the model programmatically, so that I can set its default value to one...
casi 12 años hace | 1 respuesta | 0
1
respuestaPregunta
Passing Parameters to perl from Matlab
hey I need to pass the name of the config fie with a list of output signals from the model to a perl script. when I do perl('e...
casi 12 años hace | 1 respuesta | 0
1
respuestaPregunta
writing to excel from matlab
I want to write large amount of data to existing excel file. Using xlswrite is taking some time( few minutes). Can I do it faste...
casi 12 años hace | 0 respuestas | 0
0
respuestasPregunta
Copy Parameters from Stateflow
I want to copy parameters in a stateflow to outside of the chart. This is beacuse I need to access these parameters, so that I c...
alrededor de 12 años hace | 1 respuesta | 0
1
respuestaPregunta
Adding New Menu in SImulink
Is it possible to add new menu (like File, Edit) in Simulink
alrededor de 12 años hace | 2 respuestas | 0
2
respuestasPregunta
How to add right click options in Simulink
I have a subsystem and I want to add specific function( like copy the subsystem to a new model) at the right click. Is there way...
alrededor de 12 años hace | 1 respuesta | 0
1
respuestaResuelto
Too mean-spirited
Find the mean of each consecutive pair of numbers in the input row vector. For example, x=[1 2 3] ----> y = [1.5 2.5] x=[1...
más de 12 años hace
Resuelto
Cell joiner
You are given a cell array of strings and a string delimiter. You need to produce one string which is composed of each string fr...
más de 12 años hace
Resuelto
Which values occur exactly three times?
Return a list of all values (sorted smallest to largest) that appear exactly three times in the input vector x. So if x = [1 2...
más de 12 años hace
Resuelto
Target sorting
Sort the given list of numbers |a| according to how far away each element is from the target value |t|. The result should return...
más de 12 años hace
Resuelto
Return the largest number that is adjacent to a zero
This example comes from Steve Eddins' blog: <http://blogs.mathworks.com/steve/2009/05/27/learning-lessons-from-a-one-liner/ Lear...
más de 12 años hace
Resuelto
The Goldbach Conjecture
The <http://en.wikipedia.org/wiki/Goldbach's_conjecture Goldbach conjecture> asserts that every even integer greater than 2 can ...
más de 12 años hace
Resuelto
Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...
más de 12 años hace
Resuelto
Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...
más de 12 años hace
Resuelto
Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...
más de 12 años hace
Resuelto
Back and Forth Rows
Given a number n, create an n-by-n matrix in which the integers from 1 to n^2 wind back and forth along the rows as shown in the...
más de 12 años hace
Resuelto
Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...
más de 12 años hace
Resuelto
Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...
más de 12 años hace
Resuelto
Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...
más de 12 años hace
Resuelto
Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0
más de 12 años hace
Resuelto
Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...
más de 12 años hace
Resuelto
Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...
más de 12 años hace
Resuelto
Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...
más de 12 años hace
Resuelto
Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...
más de 12 años hace