已解决


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 前

已解决


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 前

已解决


Return the Fibonacci Sequence
Write a code which returns the Fibonacci Sequence such that the largest value in the sequence is less than the input integer N. ...

7 years 前

已解决


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

7 years 前

已解决


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

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 前

已解决


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

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 前

已解决


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

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 前

已解决


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 前

已解决


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 前

已解决


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

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 前

已解决


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

7 years 前

已解决


Add two numbers
Given a and b, return the sum a+b in c.

7 years 前

已解决


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

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 前

已回答
Calculation velocity and acceleration from X and Y coordinates
It appears from the sample data that you show that the time interval is not constant in your data. This will cause some difficu...

7 years 前 | 0

| 已接受

已回答
How to scale the x axis ?
First, you need to get the handle to the current axes: h=gca; This gives the handle to the current plot axes. Now you c...

7 years 前 | 0

已回答
How to rotate ANY vector to a given angle in the space?
I am assuming that what you want to know are the rotation angles that would be used to perform a Z-Y rotation sequence in order ...

7 years 前 | 1

| 已接受

已回答
I am trying to get the height of a flying object from the ground using single camera
There are two reasons why an object off-boresight looks smaller than an object that is in the center of the field of view. Ta...

7 years 前 | 0

已回答
S-function Builder - Run Only Once
Here is a technique that I sometimes use. You can input an integer or Boolean parameter to the S-function. Use a "Memory" bloc...

7 years 前 | 0

| 已接受

已回答
Time delay in matlab fuction block used in simulink model.
Place your Matlab function block into a triggered subsystem block (or an enabled subsystem block), then trigger/enable the bloc...

7 years 前 | 0

| 已接受

已回答
how to implement Simplest down counter
Your logic seems to suggest that you want something more than just a decrement counter. A simple decrement counter would work e...

7 years 前 | 1

| 已接受

已解决


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

7 years 前

已回答
2D Interpolation of Scattered Data
I suggest you try "interp2" using the "cubic" method. (you may want to try the "spline" method also). These should be better t...

7 years 前 | 0

已回答
Why is during intgration of velocity signal in simulink exhibits drift in position signal ?
If you have two different simulation of the same thing that show different results, it is clearly an indication of an implementa...

7 years 前 | 0

已回答
how to check if a 3D point is inside a 3D cone
1) Define a unit vector, U, which points along the axis of the cone. 2) Define vector VR which points from the cone vertex, V...

7 years 前 | 2

加载更多