Resuelto


Angle between two vectors
You have two vectors , determine the angle between these two vectors For example: u = [0 0 1]; v = [1 0 0]; The a...

más de 7 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 ...

más de 7 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...

más de 7 años hace

Resuelto


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

más de 7 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 7 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 7 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 7 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 7 años hace

Resuelto


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

más de 7 años hace

Resuelto


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

más de 7 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...

más de 7 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. Examp...

más de 7 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...

más de 7 años hace

Resuelto


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

más de 7 años hace

Resuelto


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

más de 7 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...

más de 7 años hace

Resuelto


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

más de 7 años hace

Resuelto


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

más de 7 años hace

Resuelto


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

más de 7 años hace

Resuelto


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

más de 7 años hace

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

más de 7 años hace | 0

| aceptada

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

más de 7 años hace | 0

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

más de 7 años hace | 1

| aceptada

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

más de 7 años hace | 0

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

más de 7 años hace | 0

| aceptada

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

más de 7 años hace | 0

| aceptada

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

más de 7 años hace | 1

| aceptada

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 7 años hace

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

más de 7 años hace | 0

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

más de 7 años hace | 0

Cargar más