解決済み


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

約9年 前

解決済み


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

約9年 前

解決済み


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

約9年 前

解決済み


Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

約9年 前

解決済み


Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...

約9年 前

解決済み


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

約9年 前

回答済み
Matlab r2013a doesn't recognize any compiler in order to protect a model.
Hey, Have you check your simulink model configuration parameters? There is update since the later version and I think that d...

9年以上 前 | 0

質問


How specify a location for Microsoft Visual C++ 2010 v10.0 in Simulink Toolchain
Previously I worked with Matlab R2011A (32bit) and MSVS C 2010 (32bit) as compiler, now I have to work with Matlab R2013B (32bit...

9年以上 前 | 0 件の回答 | 0

0

回答

回答済み
How to print to console in S-Function Builder?
Hey, I work with Matlab R2011a and the command mexPrintf allows me to print comment into the matlab command window. I rece...

9年以上 前 | 0

回答済み
Hit Crossing driven by a signal of type 'single'
Hey, indeed this block only accepts the type "double" for input. Is it an acceptable way for you to use the block "Data Type Co...

9年以上 前 | 1

回答済み
Redifinition of mxArray: error C2371
I find solution, it happens because "simstruct.h" (the C s-function hearder) does not include the same headers when compiling in...

10年弱 前 | 1

回答済み
Matlab slider pass value to event handler
OK, you're right is see my mistake: I worte "@{pippo...", but it's "{@pippo..." the correct syntax. I never used the addlis...

10年弱 前 | 0

回答済み
How declare a variable only once in a matlab function block and then use the previous value the nex time the function is used?
Is it possible for you to have one more input and one more output? What I suggest is to do like the image below: <</matlab...

10年弱 前 | 3

回答済み
Matlab slider pass value to event handler
Hi, If you want to pass parameter with your callback you can do like this: hListener = addlistener(hSlider,'Value','PostS...

10年弱 前 | 0

回答済み
Hiding simulink model content with s-function
The .mex (or .mexw32) is a compiled file. You don't need to compile it into dll file. If you give to your third part your model...

10年弱 前 | 0

回答済み
Using string parameters in S-Functions generated by the legacy code tool
Hi, I don't know if I'm going to answer well to your question. What I understand is that you want to keep in your s-function a ...

10年弱 前 | 0

回答済み
How can I compile (C) variables used several time in Simulink as global?
Do you try to use "Goto" and "From" simulink blocks? You declare your variables in constant blocks once and you connect them ...

10年弱 前 | 0

解決済み


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

11年弱 前

解決済み


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

11年弱 前

解決済み


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

11年弱 前

解決済み


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

11年弱 前

解決済み


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

11年弱 前

解決済み


Is it a number?
Determine if input is numeric. If it is,output is 1; if it is not, output is 0.

11年弱 前

解決済み


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

11年弱 前

解決済み


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

11年弱 前

解決済み


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

11年弱 前

解決済み


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

約11年 前

解決済み


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

約11年 前

解決済み


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

約11年 前

解決済み


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

約11年 前

さらに読み込む