解決済み


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

7年弱 前

解決済み


radius of a spherical planet
You just measured its surface area, that is the input.

7年弱 前

解決済み


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

7年弱 前

解決済み


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

7年弱 前

解決済み


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

7年弱 前

解決済み


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

7年弱 前

解決済み


Fahrenheit to Celsius converter
Convert Fahrenheit to Celsius degrees.

7年弱 前

解決済み


Sum of the Matrix Elements
Add up all the elements in a NxM matrix where N signifies the number of the rows and M signifies the number of the columns. E...

7年弱 前

解決済み


Is my wife right?
Regardless of input, output the string 'yes'.

7年弱 前

解決済み


Add two numbers
Given a and b, return the sum a+b in c.

7年弱 前

解決済み


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

7年弱 前

解決済み


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

7年弱 前

解決済み


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

7年弱 前

質問


bsxfun(minus) vs normal minus
i have X=eye(3) and A=magic(3) What is the difference between *Result1*=A-X and the *Result2* with this loop for ...

7年弱 前 | 2 件の回答 | 0

2

回答

質問


How i create a matrix from a nested loop?
For this simple loop for i=1:5 for j=1:5 A=[i j] end end the result i get is 25 a...

7年弱 前 | 2 件の回答 | 0

2

回答