
Robert
Statistics
0 Problems
699 Solutions
RANK
N/A
of 257 641
REPUTATION
N/A
CONTRIBUTIONS
0 Questions
0 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
of 17 752
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Solved
Create cell array of strings
Convert the input to a cell array, but only if necessary. If the input is a string, return a 1-by-1 cell array containing the...
ungefär 2 månader ago
Solved
X O X O
On a noughts and crosses board, how many possible unique combinations are there given a square grid of length n? Assumptions/...
ungefär 2 månader ago
Solved
Penny flipping - calculate winning probability (easy)
Two players are playing a fair penny flipping game. For each flip, the winner adds one penny from the loser's collection to his/...
ungefär 2 månader ago
Solved
Duration of a trip in minutes
Input is a string which includes the duration of a trip. Convert the duration to minutes. For example if the duration of a t...
ungefär 2 månader ago
Solved
Global usage
This Challenge is to utilize Global variables. Global variables are risky as the subroutine may inadvertently and unwantingly...
ungefär 2 månader ago
Solved
Persistent Usage
This Challenge is to implement the Matlab Persistent variable capability. Given a sequence of Calls to a function return the cu...
ungefär 2 månader ago
Solved
Cody Matlab Version
What is the current Cody Matlab Release? *Output:* string *Examples:* '(R2012a)' or 'R2012a' Hint: We have mo...
ungefär 2 månader ago
Solved
Find the diagonal of the square of side L
You are given a square of side length L, find D the length of its diagonal.
ungefär 2 månader ago
Solved
False position (linear interpolation) method of finding a root.
Test the false position algorithm described in Chapter 5 of Steven C. Chapra's textbook, Applied Numerical Methods with MATLAB f...
ungefär 2 månader ago
Solved
time of day
Calculate the time of day in days, hours, minutes or seconds passed since the beginning of the day, depending on the unit. The u...
ungefär 2 månader ago
Solved
Mandelbrot Number Test [Real+Imaginary]
The <http://en.wikipedia.org/wiki/Mandelbrot_set Mandelbrot Set> is built around a simple iterative equation. z(1) = c z...
ungefär 2 månader ago
Solved
find "greatest common divisor" of two integer value
A function to find Greatest Common Divisor of two integer input E.G. x=-18 y=96 output should be +6 x=-18; y=96; >>your...
ungefär 2 månader ago
Solved
mathematics , probability problem
How many different result can we have, rolling k dice?
ungefär 2 månader ago
Solved
Matlab Basics II - Determine if an array has a 3rd dimension
For an array A, determine whether it has 3 dimensions, return 0 if x is only 2D, and 1 if x is 3D
ungefär 2 månader ago
Solved
Find the binary code
Given a sinusoidal signal, create a function that returns the binary code of a quantized value. The function takes the bit lengt...
ungefär 2 månader ago
Solved
Vertically stack two vectors
Stack two vectors on top of each-other so that... if A = [1 5 3] and B = [8 6 4] then C = [1 5 3 ; 8 6 4]
ungefär 2 månader ago
Solved
Throw common elements of two vector arrays in sorted manner
Throw common elements as output in sorted manner (acending order) of two given input vector arrays
ungefär 2 månader ago
Solved
Find offset of given matrix element from first matrix element
Given matrix m and an element of that matrix, return the offset from its first element. e.g. m=[11 2 34; 40 51 6; 87 8 109] el...
ungefär 2 månader ago
Solved
Find supported functions
Given a function name, return true if that function is supported by the toolboxes that are installed with MATLAB on this machine...
ungefär 2 månader ago
Solved
Step up
For given input array, output a array with all elements step up by two
ungefär 2 månader ago
Solved
How to get the additive inverse of a uint8.
Given x as a uint8 find the additive inverse y.
ungefär 2 månader ago
Solved
Combination logic
Create an algorithm in MATLAB that calculate the combination for the given positive integers n and k as inputs. When k > n, the ...
ungefär 2 månader ago
Solved
What's the missing interior angle?
I'm talking about polygons... The sum of the interior angles of a triangle is 180 degrees. The sum of the interior angles of a...
ungefär 2 månader ago
Solved
Can you reshape the matrix?
Given a matrix A, is it possible to reshape it into another matrix with the given number of rows?
ungefär 2 månader ago
Solved
Define the operators of function_handles
Suppose f and g are function_handles, try to define f+g,f-g,f*g and f/g. e.g. if f = @(x)x and g = @(x)x+1 ...
ungefär 2 månader ago
Solved
sum of ASCII
Given a string x, return the sum of all ASCII numbers of all characters. for example, if x='lala' ('l'-> 108, 'a'->97) then y...
ungefär 2 månader ago