已回答 how can find lcm of fraction number.
Hi there,
Here are the steps to find LCM of fractions a/b and c/d:
Find the LCM of b and d = LCM(b,d)
Multiply the numerator ...
Cell joiner
You are given a cell array of strings and a string delimiter. You need to produce one string which is composed of each string fr...
1 year 前
已解决
Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because
6 = 1 + 2 + 3
which can be displayed ...
1 year 前
已解决
The Goldbach Conjecture, Part 2
The <http://en.wikipedia.org/wiki/Goldbach's_conjecture Goldbach
conjecture> asserts that every even integer greater than 2 can ...
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:
Input...
1 year 前
已解决
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...
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...
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:...
1 year 前
已回答 Wrong output for strand sort algorithm
Hi Mustafa,
There are a few corrections to be made in your code:
You are not clearing the sorted array after the inner while...
1 year 前 | 0
已回答 how can fix this error of this code?
Hi there,
In the line,
start_node = names == 'A';
You are trying to use '==' operator on names which is a cell array and cel...