Statistics

All
File Exchange

2 Files

Cody

0 Problems
1149 Solutions

RANK
N/A
of 300,611

REPUTATION
N/A

CONTRIBUTIONS
0 Questions
0 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
0

RANK
15,124 of 21,028

REPUTATION
12

AVERAGE RATING
5.00

CONTRIBUTIONS
2 Files

DOWNLOADS
2

ALL TIME DOWNLOADS
59

RANK
70
of 169,811

CONTRIBUTIONS
0 Problems
1149 Solutions

SCORE
14,397

NUMBER OF BADGES
42

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • MATLAB Shorts Mini Hack Participant
  • MATLAB Shorts Mini Hack 3rd place
  • Cody Problems in Japanese Master
  • Speed Demon
  • Personal Best Downloads Level 1
  • First Review
  • Draw Letters
  • Commenter
  • Scholar
  • Matrix Manipulation I Master
  • Indexing II Master
  • Sequences And Series II Master

View badges

Feeds

View by

Solved


prime test 2
enter the only non prime,non composite number

14 hours ago

Solved


Display negative numbers
Given array,x, display all the negative numbers and display output as y. Example x=[1 -2 3 -4] , output is y=[-2 -4].

14 hours ago

Solved


Average of odd values
Find the average of odd values in given a matrix. e.g x=[ 4 11 8 ; 9 2 7 ] y =( 11 + 9+ 7 ) / 3

14 hours ago

Solved


Delete the column with all 0 !
Delete the column with all 0 data in a matrix(x). e.g. input x = 1 0 0 4 5 0 7 0 ...

14 hours ago

Solved


Replace Nan!
Replace Nan in the given vector(v) with 9999.

14 hours ago

Solved


Average of even-numbered columns
Given a vector, find the average of even-numbered columns. e.g x = [ 4 6 8 9 1 2 7 ] y = ( 6 + 9 + 2 ) / 3

14 hours ago

Solved


Compare two strings.
Compare two strings, whether they are equal or not.

14 hours ago

Solved


Calculating the total earnings of a factory
The row vector, prods contains the number of various products manufactured per hour. The second row vector, prices holds values ...

14 hours ago

Solved


Generate the Matrix!
Given n, generate the following matrix: a = [ n n-1 n-2 ... 2 1; n-1 n-1 n-2 ... 2 1; n-2 n-2 n-2 ... 2 1;...

14 hours ago

Solved


count upper and lower case characters
In a given input string, count and return the number of upper and lower case characters as u and l respectively. For example:...

14 hours ago

Solved


Project Euler: Problem 9, Pythagorean numbers
A Pythagorean triplet is a set of three natural numbers, a b c, for which, a^2 + b^2 = c^2 For example, 3^2 + 4^2 = 9 + 16 ...

14 hours ago

Solved


Dial Up
Each number on telephone keypads, except 0 and 1, corresponds to a set of uppercase letters as shown in this list: 2 ABC, 3 DEF...

14 hours ago

Solved


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

14 hours ago

Solved


The 5th Root
Write a function to find the 5th root of a number. It sounds easy, but the typical functions are not allowed (see the test su...

14 hours ago

Solved


Find the nearest prime number
Happy 5th birthday, Cody! Since 5 is a prime number, let's have some fun looking for other prime numbers. Given a positive in...

14 hours ago

Solved


surface areas of a cylinder
There are 3 inputs: option, radius and height. If option= '1', compute the lateral surface area of the cylinder, for option 2 ca...

14 hours ago

Solved


Repetition of matrices
*A is a bold matrix: [1 2 3; 4 5 6;7 8 9]* Given an integer 'n' , a matrix B exists such that has n copies of A in the row an...

14 hours ago

Solved


Joules to Megatons of TnT
Given joules, J, make a function that converts to megatons of TNT.

17 hours ago

Solved


MPS to MPH
Given the speed in miles per second, find the speed in miles per hour.

17 hours ago

Solved


Degrees to Radian
Convert degrees to radians

17 hours ago

Solved


Hydrostatic Pressure
Given depth(height), in m, find the pressure under a body of water. Need to know the density of water(kg/m^3), and gravity(m/s^2...

19 hours ago

Solved


Values in Array
How many values are in the array

19 hours ago

Solved


Energy of an object
Calculate the total mechanical energy of an object. Total Energy= Potential energy + Kinetic energy P.E.=m*g*h K.E.=1/2...

19 hours ago

Solved


Sum of cubes
Write a program to determine sum of cubes of first n odd numbers.

19 hours ago

Solved


Create a constant offset.
Add a constant offset to an array. Example a = [1 3 5 9] offset = 2 y = [3 5 7 11]

19 hours ago

Solved


Nth root
Nth root of a number x

19 hours ago

Solved


Delete x value in given vector y.
Delete x value in given vector y. Exapmle x=5; y=[ 1 2 5 6 74 5 2 5] result=[1 2 6 74 2]

19 hours ago

Solved


Calculate solution of given polynomial
For example, y=function([3 -2 -4]) In here, input vector indicate 3*x^2-2*x-4, y is solution of former equation. y=[1.5...

19 hours ago

Solved


Calculate numerical integration.
x=0:0.01:1 y=@(x)x.^2 Using given two inputs(x and y), conduct numerical integration in x. (hint: trapz)

19 hours ago

Solved


Calculate correlation.
There are two data. y1=[0 1 2 3 4]' y2=[2 3 4 5 6]' We can see positive relationship between y1 and y2. The relations...

19 hours ago

Load more