Christian - MATLAB Central
photo

Christian


Last seen: 3年以上 前 2012 年からアクティブ

Followers: 0   Following: 0

統計

All
CodyMATLAB AnswersFile ExchangeFrom 08/12 to 04/25Use left and right arrows to move selectionFrom 08/12Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

4 質問
0 回答

File Exchange

1 ファイル

Cody

0 問題
41 解答

ランク
41,079
of 298,005

評判
0

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

回答採用率
75.0%

獲得投票数
0

ランク
13,305 of 20,520

評判
22

平均評価
0.00

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

ダウンロード
1

ALL TIME ダウンロード
227

ランク
12,474
of 160,151

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

スコア
420

バッジ数
1

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

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

平均評価

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

平均いいねの数

  • Thankful Level 2
  • First Review
  • First Submission
  • Thankful Level 1
  • Solver

バッジを表示

Feeds

表示方法

質問


Read parquet file error
Hi, I'm reading parquet files and facing some problems. For comparison the file was read with python using fastparquet with no ...

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

1

回答

質問


Insert timestamp with timezone in database
Hi, I'd like to insert (table) data into an Oracle database. The data contains datetime variables with timezone information whi...

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

1

回答

質問


Is there a way to create a custom cvpartition?
Hi, I'd like you use crossvalidation in a model with a custom set of training/test sample vectors. To use some of the built-...

4年弱 前 | 3 件の回答 | 0

3

回答

解決済み


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

6年弱 前

解決済み


How to find the position of an element in a vector without using the find function
Write a function posX=findPosition(x,y) where x is a vector and y is the number that you are searching for. Examples: fin...

約11年 前

解決済み


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]

約11年 前

解決済み


New Cody Time-Out Time
Determine the New Cody Time-Out Time Consume the Maximum Possible Time without Timing out. *Score:* 60 (sec) - Time (sec) ...

約11年 前

解決済み


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

約11年 前

解決済み


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

約11年 前

解決済み


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

約11年 前

解決済み


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

約11年 前

解決済み


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

約11年 前

解決済み


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

約11年 前

解決済み


Right and wrong
Given a vector of lengths [a b c], determines whether a triangle with those sides lengths is a right triangle: <http://en.wikipe...

約11年 前

解決済み


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

約11年 前

解決済み


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

約11年 前

解決済み


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

約11年 前

解決済み


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

約11年 前

解決済み


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

約11年 前

解決済み


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

12年以上 前

解決済み


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

12年以上 前

解決済み


Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...

12年以上 前

解決済み


Unique - Very Very Large Numbers
Given a vector column, with some very large numbers, create the ascending sort and unique vector. *Input:* A (column vector)...

12年以上 前

解決済み


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

12年以上 前

解決済み


Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...

12年以上 前

送信済み


csvexport
Export cellarrays to csv files

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

0.0 / 5

解決済み


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

12年以上 前

解決済み


surface of a spherical planet
you just discovered its circumference, that is the input.

12年以上 前

解決済み


Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...

12年以上 前

解決済み


Distance walked 1D
Suppose you go from position 7 to 10 to 6 to 4. Then you have walked 9 units of distance, since 7 to 10 is 3 units, 10 to 6 is 4...

12年以上 前

さらに読み込む