photo

rob


King's College London

Last seen: 11ヶ月 前 2016 年からアクティブ

Followers: 0   Following: 0

統計

All
MATLAB Answers

3 質問
1 回答

Cody

0 問題
13 解答

ランク
39,520
of 300,765

評判
1

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

回答採用率
66.67%

獲得投票数
1

ランク
 of 21,084

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク
33,791
of 170,941

コントリビューション
0 問題
13 解答

スコア
140

バッジ数
1

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

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

平均評価

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

平均いいねの数

  • Thankful Level 1
  • Solver

バッジを表示

Feeds

表示方法

質問


Printing string as a variable
I have a table (mytable)with 'm' rows and I am trying to add multiple empty columns with names that are in ascending numerical o...

8年以上 前 | 1 件の回答 | 0

1

回答

回答済み
Indices of highest values in a vector when values are repeated
I was able to find a solution with assistance form a comment posted elsewhere: thresh = 0.5 B = sort(A,1,'descend') ...

8年以上 前 | 0

質問


Indices of highest values in a vector when values are repeated
Hi, I have used the following code to find the top 50% highest values in vector A: top = round(0.5*length(A)) c = fl...

8年以上 前 | 1 件の回答 | 0

1

回答

質問


Replacing only certain instances of text within matlab character array
I have a large character array in matlab: 'lineDataA' - containing many different numbers. I would like to find and replace...

9年弱 前 | 1 件の回答 | 1

1

回答

解決済み


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

約9年 前

解決済み


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

約9年 前

解決済み


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...

約9年 前

解決済み


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

約9年 前

解決済み


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

約9年 前

解決済み


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

約9年 前

解決済み


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

約9年 前

解決済み


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

約9年 前

解決済み


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

約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年 前

解決済み


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年 前

解決済み


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

約9年 前