A résolu


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

plus de 9 ans il y a

A résolu


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

plus de 9 ans il y a

A résolu


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

plus de 9 ans il y a

A résolu


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

plus de 9 ans il y a

A résolu


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

plus de 9 ans il y a

A résolu


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

plus de 9 ans il y a

A résolu


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

plus de 9 ans il y a

A résolu


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

plus de 9 ans il y a

Réponse apportée
How to remove a pattern in a table column
assuming T - your table, and n - number of column containing these strings you can do as follows: T{:, n} = regexprep(T{:, ...

plus de 9 ans il y a | 2

| A accepté

A résolu


kmph to mph converter
Convert the speed in miles/hour to km/hour.

plus de 9 ans il y a

A résolu


Back to Basics - New Data Type in R2016b - convert a char to a string
Convert an char array into a string.

plus de 9 ans il y a

Réponse apportée
How to do a fft from a sine signal with hanning function
You can try starting with something like this fs = 44100; % sampling frequency T = 1; % period, 1 second n = T*fs; ...

plus de 9 ans il y a | 0

A résolu


Find unique number in input
Find value that occurs in odd number of input elements.

plus de 9 ans il y a

Réponse apportée
Working and non Working hours
Yes, you can. For example: % assuming your data in variable called datecolumn daytime = timeofday(datecolumn); openi...

plus de 9 ans il y a | 1

| A accepté

A résolu


Determine the roots of a cubic equation
Given the coefficients a, b, c, and d of a cubic equation, a*x^3 + b*x^2 + c*x + d = 0, determine its roots.

plus de 9 ans il y a

A résolu


Linear system of equations
Solve the system of equations in three variables.

plus de 9 ans il y a

A résolu


Simpsons's rule (but not Homer Simpson)
I wonder what Homer Simpson would have thought of Simpson's rule? Somehow I doubt his thoughts would have included the phrase Ne...

plus de 9 ans il y a

A résolu


Euclidean inter-point distance matrix
The Euclidean distance between two points in a p-dimensional space is a really common thing to compute in the field of computati...

plus de 9 ans il y a

A résolu


What's size of TV?
Many people buy TV. Usually they ask about diagonal. But also important are width and height. Let's assume that all TV have rati...

plus de 9 ans il y a

Réponse apportée
Algebra function with table and vector
If you want to work on tables in MATLAB functions <http://www.mathworks.com/help/matlab/ref/varfun.html varfun> and <http://www....

plus de 9 ans il y a | 1

A résolu


Odd row
Create a row 'y' with odd numbers where the range of numbers is given by 'x' and the space between them by 'm'. The first number...

plus de 9 ans il y a

A résolu


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

plus de 9 ans il y a

A résolu


Repeat the entries of the vector to their reference times in the vector.
e.g for input x: [ 7 3 9 5] output y: [ 7 3 3 9 9 9 5 5 5 5]

plus de 9 ans il y a

A résolu


what can you get for exactly amount of money
You go to store, where each product has price. Prices are in vector s= [ 195 125 260 440 395 290] and you have amount of ...

plus de 9 ans il y a

A résolu


Pad zero between every adjacent values of the vector.
you are given a vector x. you have to make an output vector y with zeros padded between every adjacent values of x. e.g x: ...

plus de 9 ans il y a

A résolu


S-T-R-E-T-C-H I-T O-U-T
You will be given a row of numbers (x), and a single number (n). Your job is to write a script that will stretch out the row of...

plus de 9 ans il y a

A résolu


Roots of a quadratic equation.
Determine the roots of a quadratic equation., if coefficients a,b and c are given.

plus de 9 ans il y a

A résolu


Elastic Collision 001: 1-D
Elastic Collision of two particles. <http://en.wikipedia.org/wiki/Elastic_collision wiki Elastic Collision> Solve Conservat...

plus de 9 ans il y a

A résolu


Remove TeX from string
Matlab’s TeX support in figure windows is great for displaying information in a visually appealing way. However, many of the TeX...

plus de 9 ans il y a

A résolu


Vector multiplication
Given two row vectors, v1 and v2, each representing an integer, such that the vector elements are the digits from left to right,...

plus de 9 ans il y a

Charger plus