photo

Ray


Last seen: 4日 前 2022 年からアクティブ

Followers: 0   Following: 0

統計

All
MATLAB Answers

1 質問
1 回答

File Exchange

1 ファイル

Cody

4 問題
36 解答

ランク
282,197
of 300,759

評判
0

コントリビューション
1 質問
1 回答

回答採用率
0.0%

獲得投票数
0

ランク
20,810 of 21,081

評判
0

平均評価
0.00

コントリビューション
1 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク
8,728
of 170,900

コントリビューション
4 問題
36 解答

スコア
824

バッジ数
9

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • First Review
  • First Submission
  • First Answer
  • Speed Demon
  • Creator
  • Curator
  • Community Group Solver
  • Solver

バッジを表示

Feeds

表示方法

解決済み


Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
For a row vector: V=[7 1 2 -3] there is one sign change (from 2 to -3). So, the function you write must return N=1. F...

4日 前

解決済み


Symmetry of vector
Determine whether the vector is symmetric or not (vector could be even or odd in length). For example: x = [1 2 3 3 2 1] is s...

5日 前

解決済み


Count consecutive 0's in between values of 1
So you have some vector that contains 1's and 0's, and the goal is to return a vector that gives the number of 0's between each ...

5日 前

解決済み


Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to find the logical indices o...

5日 前

解決済み


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

9日 前

解決済み


Chess probability
The difference in the ratings between two players serves as a predictor of the outcome of a match (the <http://en.wikipedia.org/...

9日 前

解決済み


Magic is simple (for beginners)
Determine for a magic square of order n, the magic sum m. For example m=15 for a magic square of order 3.

9日 前

解決済み


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

9日 前

解決済み


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

9日 前

解決済み


Calculate Amount of Cake Frosting
Given two input variables r and h, which stand for the radius and height of a cake, calculate the surface area of the cake you n...

9日 前

解決済み


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

9日 前

解決済み


Return area of square
Side of square=input=a Area=output=b

9日 前

解決済み


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

9日 前

解決済み


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

9日 前

送信済み


Did Not Complete
This program uses Grader output and a roster to find out which students on the roster did not complete the assignment.(100%)

1年以上 前 | ダウンロード 0 件 |

0.0 / 5
Thumbnail

解決済み


How many Christmas presents under the tree?
For many families at Christmas, each family member gives 1 present to every other family member. The main exception is that chil...

2年弱 前

解決済み


Find max prime number
Given integer number n. Find the max prime number (mpn) that smaller than or equal to n. Example: n = 10 --> mpn = 7

2年弱 前

問題


Count integers in randomized vector that are multiples of a given number.
The mod() function We might all remember the days when we were taught to divide and then set the remainder aside if the numbers...

約2年 前 | 0 | 30 個のソルバー

問題


The Hacker Parole Problem
The hacker parole problem 100 hackers have been imprisoned, but have been given a way to get parole. Each of the 100 prisone...

約2年 前 | 0 | 6 個のソルバー

解決済み


Sum of diagonal of a square matrix
If x = [1 2 4; 3 4 5; 5 6 7] then y should be the sum of the diagonals of the matrix y = 1 + 4 + 7 = 12

約2年 前

解決済み


Summing the last column column
Given a matrix, return the sum of the last column of the array.

約2年 前

解決済み


Return part of an array
Given a 5x5 array, return a 3x3 array that contains the cells that are not on the edge of the array: Given this array Return...

約2年 前

回答済み
Tracking completion of MATLAB Fundamentals as a course requirement
Students can share their progress with you on the course page. They use your username for the share and then the system keeps y...

約2年 前 | 0

問題


Return part of an array
Given a 5x5 array, return a 3x3 array that contains the cells that are not on the edge of the array: Given this array Return...

2年以上 前 | 1 | 36 個のソルバー

問題


Summing the last column column
Given a matrix, return the sum of the last column of the array.

2年以上 前 | 0 | 38 個のソルバー

解決済み


Given a matrix, swap the 2nd & 3rd columns
If a = [1 2 3 4; 1 2 3 4; 1 2 3 4; 1 2 3 4]; then the result is ans = 1 3 2 4 1 3 2...

2年以上 前

解決済み


Vector creation using linspace
Create a vector y containing n uniformly spaced values between a and b, with a < b. Use linspace.

2年以上 前

解決済み


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

2年以上 前

解決済み


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

2年以上 前

解決済み


Create a vector
Create a vector from 0 to n by intervals of 2.

2年以上 前

さらに読み込む