Respondida
Difference between Function-call input Event and Function-call output Event?
The answer is yes, and the reason is a RTFM: <http://www.mathworks.com/help/releases/R2014b/stateflow/ug/using-output-events-to-...

más de 9 años hace | 0

Respondida
Temporal logic in condition
Try with a junction. You need that junction because a trigger can only be stated before the condition in one transition. <</m...

más de 9 años hace | 1

| aceptada

Respondida
Matlab 2014a start up error with Yosmite 64bit mac
Please see other thread <http://www.mathworks.com/matlabcentral/answers/159016>

más de 9 años hace | 0

Respondida
Is there a StateFlow Users Guide Ver. 8?
The current Stateflow Users Guide is available online at <http://www.mathworks.com/help/pdf_doc/stateflow/sf_ug.pdf>. This is Ve...

más de 9 años hace | 0

| aceptada

Respondida
How to set regexp expression for HH:MM dd.mm.yyyy format?
There is a function that does the parsing for you. Try t = datetime(dateSTOP,'InputFormat','hh:mm dd.MM.yyyy') See ...

más de 9 años hace | 2

| aceptada

Respondida
Hi everyone, I am new to matlab. I have aa problem regarding fft of time series.
The documentation on fft might help. See <http://www.mathworks.com/help/matlab/ref/fft.html>

más de 9 años hace | 0

Respondida
XML schema for Stateflow
Stateflow's model format is readable, but not open. You should not need to directly read or write SLX model files, as this forma...

más de 9 años hace | 0

| aceptada

Respondida
Is there any way to run simulink model after certain time period?
You may want to have a look at the Simulin documentation for <http://www.mathworks.de/de/help/simulink/ug/running-parallel-simul...

alrededor de 10 años hace | 1

Respondida
Fatal Error using CFTOOL
Please contact Technical Support at *<http://www.mathworks.com/myservicerequests www.mathworks.com/myservicerequests>*, having y...

alrededor de 10 años hace | 0

| aceptada

Respondida
What is the MATLAB & Simulink Racing Lounge?
On Jan 23rd we're airing live from San Diego, CA, where we are celebrating the 30th anniversary of MathWorks with all our collea...

más de 10 años hace | 0

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

más de 10 años hace

Pregunta


What is the MATLAB & Simulink Racing Lounge?
I heard about the *MATLAB & Simulink Racing Lounge* for <http://www.mathworks.com/academia/student-competitions/formula-student-...

más de 10 años hace | 3 respuestas | 0

3

respuestas

Resuelto


Remove all the words that end with "ain"
Given the string s1, return the string s2 with the target characters removed. For example, given s1 = 'the main event' your ...

casi 12 años hace

Resuelto


Trimming Spaces
Given a string, remove all leading and trailing spaces (where space is defined as ASCII 32). Input a = ' singular value deco...

casi 12 años hace

Resuelto


Pattern matching
Given a matrix, m-by-n, find all the rows that have the same "increase, decrease, or stay same" pattern going across the columns...

casi 12 años hace

Resuelto


Remove all the consonants
Remove all the consonants in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill'; Output s2 is 'a ...

alrededor de 12 años hace

Resuelto


Counting Money
Add the numbers given in the cell array of strings. The strings represent amounts of money using this notation: $99,999.99. E...

alrededor de 12 años hace

Resuelto


Bullseye Matrix
Given n (always odd), return output a that has concentric rings of the numbers 1 through (n+1)/2 around the center point. Exampl...

alrededor de 12 años hace

Resuelto


Find the alphabetic word product
If the input string s is a word like 'hello', then the output word product p is a number based on the correspondence a=1, b=2, ....

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

alrededor de 12 años hace

Resuelto


Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...

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

alrededor de 12 años hace

Resuelto


Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...

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

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

alrededor de 12 años hace

Resuelto


Is my wife right?
Regardless of input, output the string 'yes'.

alrededor de 12 años hace

Resuelto


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

alrededor de 12 años hace

Resuelto


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

alrededor de 12 años hace

Resuelto


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

alrededor de 12 años hace

Resuelto


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

alrededor de 12 años hace

Cargar más