Solved


Solve the Sudoku Row
*Description* A simple yet tedious task occurs near the end of most Sudoku-solving algorithms, computerized or manual. The ta...

10 years ago

Solved


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

10 years ago

Solved


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

10 years ago

Solved


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

10 years ago

Solved


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

10 years ago

Solved


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

10 years ago

Answered
how can compute the frequency of given gray scale image?...
<http://www.mathworks.nl/help/images/ref/freqz2.html freqz2 Matlab documentation> _ [H, f1, f2] = freqz2(h, n1, n2) return...

10 years ago | 0

Answered
can anybody post matlab code for rectangular spiral shape?
There are many different types of spirals, is this what do you mean? <http://en.wikipedia.org/wiki/File:Fibonacci_spiral_...

10 years ago | 0

Answered
Need help calculating fixation lengths
This seems to accomplish what you ask. I don't know if it is the most elegant solution, though... clc; clear all; close all...

10 years ago | 0

| accepted