Feeds
已解决
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:...
2 years 前
已回答
[SIMULINK] Sound interface, multiple inputs and outputs
The "Audio Device Reader" block can output all channels through the same port as an m by n matrix where m is the number of sampl...
[SIMULINK] Sound interface, multiple inputs and outputs
The "Audio Device Reader" block can output all channels through the same port as an m by n matrix where m is the number of sampl...
4 years 前 | 0
| 已接受
已回答
[Simulink] Play and record audio simultaneusly
After looking at the model with Professor Requena, we've concluded the issue was the sample time of the noise source, which was ...
[Simulink] Play and record audio simultaneusly
After looking at the model with Professor Requena, we've concluded the issue was the sample time of the noise source, which was ...
4 years 前 | 0
| 已接受
已回答
Interact with simulink from Matlab
Another way to do this is to make paremeters live in the MATLAB workspace as variables and just change them in between simulatio...
Interact with simulink from Matlab
Another way to do this is to make paremeters live in the MATLAB workspace as variables and just change them in between simulatio...
5 years 前 | 0
已解决
Read a column of numbers and interpolate missing data
Given an input cell array of strings s, pick out the second column and turn it into a row vector of data. Missing data will be i...
6 years 前
已解决
Interpolator
You have a two vectors, a and b. They are monotonic and the same length. Given a value, va, where va is between a(1) and a(end...
6 years 前
已解决
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 ...
6 years 前
已回答
matrix of circulating vectors without loop
Still with a for loop, but somewhat more readable... input = [1 2 3 4; ... 4 5 6 7; ... 3 8 4 6]; ...
matrix of circulating vectors without loop
Still with a for loop, but somewhat more readable... input = [1 2 3 4; ... 4 5 6 7; ... 3 8 4 6]; ...
6 years 前 | 1
已解决
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 ...
7 years 前
已解决
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 ...
7 years 前
已解决
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...
7 years 前
已解决
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...
7 years 前
已解决
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...
7 years 前
已解决
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...
7 years 前
已解决
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 ...
7 years 前
已解决
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 + ...
7 years 前
已解决
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...
7 years 前
已解决
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. Examp...
7 years 前
已解决
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...
7 years 前
已解决
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
7 years 前
已解决
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...
7 years 前
已解决
Make a 1 hot vector
Make a vector of length _N_ that consists of all zeros except at index _k_, where it has the value 1. Example: Input ...
7 years 前