解決済み


Convert a vector into a number
This is a sub problem related to this problem: <http://www.mathworks.com/matlabcentral/cody/problems/621-cryptomath-addition>...

11年弱 前

解決済み


Back to basics 10 - Max Float
Covering some basic topics I haven't seen elsewhere on Cody. Return the largest positive floating-point number MATLAB can han...

11年弱 前

解決済み


Number of Horns on a unicorn!
Calculate the number of horns on a *unicorn*! And I'm talking about a unicorn with not more than one horn on it!

11年弱 前

解決済み


Rotate a Matrix by 90 degrees
Rotate a Matrix by 90 degrees Example: If the input is: X = 1 2 3 4 5 6 7 8 9 ...

11年弱 前

解決済み


Duplicate each element of a vector.
for an n-dimensional vector x, the function should return another vector 2n-dimension which each element is repeated twice. Ex...

11年弱 前

解決済み


Project Euler: Problem 10, Sum of Primes
The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17. Find the sum of all the primes below the input, N. Thank you <http:/...

11年弱 前

解決済み


Remove NaN ?
input -> matrix (n*m) with at least one element equal to NaN; output -> matrix(p*m), the same matrix where we deleted the enti...

11年弱 前

解決済み


All your base are belong to us
Find the base _b_ logarithm of the input decimal number _x_. Express the output as a decimal number. The first argument is the n...

11年弱 前

解決済み


Determine Whether an array is empty
Input a matrix x, output y is TRUE if x is empty, otherwise FALSE.

11年弱 前

解決済み


Project Euler: Problem 6, Natural numbers, squares and sums.
The sum of the squares of the first ten natural numbers is, 1^2 + 2^2 + ... + 10^2 = 385 The square of the sum of the first ...

11年弱 前

解決済み


Back to basics 12 - Input Arguments
Covering some basic topics I haven't seen elsewhere on Cody. Return a value equal to the number of input arguments to the fun...

11年弱 前

解決済み


Compute a dot product of two vectors x and y
x and y are input vectors, d is a number and contains their dot product

11年弱 前

回答済み
online extracting data from DB using MATLAB
Hello Neeloufar, Here is some very specific code that pulls all the data from url: <http://www.genome.jp/dbget-bin/www_bget?-...

11年弱 前 | 1

解決済み


Love triangles
Given a vector of lengths [a b c], determines whether a triangle with non-zero area (in two-dimensional Euclidean space, smarty!...

11年弱 前

回答済み
Logarithmic scale for colorbar
Hello Tom, My script plots sample data in logscale using "countourf", and both "YTick" and "YTickLabel" are set in "colorbar"...

11年弱 前 | 7

| 採用済み

回答済み
plotting simple one variable functions for beginner using fplot
Hello bluseky, Try "ezplot" instead: syms x1 real f=x1^3 ezplot(f,[-1,1]) If you require the use of "fplot", g...

11年弱 前 | 1

| 採用済み

回答済み
How do I correlate columns
Hello again, Kris, This function outputs a 925x90 matrix with individually computed linear correlation coefficients for each ...

11年弱 前 | 1

| 採用済み

解決済み


Increment a number, given its digits
Take as input an array of digits (e.g. x = [1 2 3]) and output an array of digits that is that number "incremented" properly, (i...

11年弱 前

解決済み


First N Perfect Squares
*Description* Return the first N perfect squares *Example* input = 4; output = [ 1 4 9 16 ];

11年弱 前

解決済み


Getting logical indexes
This is a basic MATLAB operation. It is for instructional purposes. --- Logical indexing works like this. thresh = 4...

11年弱 前

解決済み


Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to <http://www.mathworks....

11年弱 前

解決済み


Omit columns averages from a matrix
Omit columns averages from a matrix. For example: A = 16 2 3 13 5 11 10 8 9 7 ...

11年弱 前

解決済み


Back to basics 22 - Rotate a matrix
Covering some basic topics I haven't seen elsewhere on Cody. Rotate the input matrix 90 degrees counterclockwise (e.g. [1 2; ...

11年弱 前

解決済み


Spot the outlier
All points except for one lie on a line. Which one is the outlier? Example: You are given a list of x-y pairs in a column ...

11年弱 前

回答済み
How to use sum series in Matlab
I'm providing another solution to address the longer summation you have posted in my first answer. Please let me know if this s...

11年弱 前 | 1

| 採用済み

解決済み


Find the two most distant points
Given a collection of points, return the indices of the rows that contain the two points most distant from one another. The inpu...

11年弱 前

回答済み
How to use sum series in Matlab
Hello Atinesh syms i %Creat symbolic variable 'i' symsum(i^2, i, 1, 4) %Use symsum to run your summation operation Be...

11年弱 前 | 0

回答済み
How to aggregate one column according to the other column in MATLAB?
%Built the reference MAT file from which your table is pulled product=[114,112,112,113,115,113,111,113]'; customer=[1 2 ...

11年弱 前 | 0

回答済み
Multiplying structures together based on field names
Hello Oliz, I've played around with your structures, and I have multiplied _struct1.a_ through _struct2.b_ in the following w...

11年弱 前 | 0

解決済み


Make a run-length companion vector
Given a vector x, return a vector r that indicates the run length of any value in x. Each element in r shows how many times the ...

11年弱 前

さらに読み込む