T. Dunker - MATLAB Central
photo

T. Dunker


Fraunhofer IFF

Last seen: 16 days 前 自 2017 起处于活动状态

Followers: 0   Following: 0

消息

统计学

All
CodyMATLAB AnswersFile ExchangeFrom 05/17 to 04/25Use left and right arrows to move selectionFrom 05/17Use 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

0 个提问
1 个回答

File Exchange

1 文件

Cody

0 个问题
17 个答案

排名
12,853
of 298,264

声誉
4

贡献数
0 个提问
1 个回答

回答接受率
0.00%

收到投票数
0

排名
15,306 of 20,554

声誉
11

平均
5.00

贡献数
1 文件

下载次数
1

ALL TIME 下载次数
57

排名
18,596
of 160,718

贡献数
0 个问题
17 个答案

评分
271

徽章数量
5

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 1
  • First Answer
  • Revival Level 1
  • Leader
  • GitHub Submissions Level 1
  • First Review
  • 5-Star Galaxy Level 1
  • First Submission
  • Speed Demon
  • Promoter
  • Commenter
  • Solver

查看徽章

Feeds

排序方式:

已提交


MVTec Halcon wrapper with XLD serialization
Matlab wrapper for MVTec Halcon functions with XLD serialization

3 years 前 | 1 次下载 |

5.0 / 5

已回答
Simulate radio buttons inside a UITable
Your question matched what I was searching for, too. As I could not find some hint for a built-in feature. I tried a callback st...

4 years 前 | 0

| 已接受

已解决


Algorithmic Trading - 1 (optimize simple trading strategy)
This is the first of a series of problems on quant trading. Quant traders seek to optimize investment performance devising tradi...

4 years 前

已解决


"Cody" * 5 == "CodyCodyCodyCodyCody"
*Alice*: What? *"Cody" * 5 == "CodyCodyCodyCodyCody"*? You've gotta be kidding me! *Bob*: No, I am serious! Python supports...

7 years 前

已解决


Parse me a Lisp
*Description* In Lisp and its variants, function calls are done using parenthesis where the first item in the parenthesis is ...

7 years 前

已解决


Write c^3 as sum of two squares a^2+b^2
write c^3 as sum of two squares a^2+b^2. For example 5^3 = 2^2 + 11^2 5^3 = 5^2 + 10^2 10^3 = 10^2 + 30^2 10^3 = 1...

7 years 前

已解决


The Glass Half Full
Identical glasses are placed in a triangular tower structure, such that the top level (L = 1) comprises one glass, the next leve...

7 years 前

已解决


Energy of a photon
Given the frequency F of a photon in giga hertz. Find energy E of this photon in giga electron volts. Assume h, Planck's ...

7 years 前

已解决


How to subtract?
* Imagine you need to subtract a few numbers using MATLAB. * You will not be using eval for this task. * Given two ASCII strin...

7 years 前

已解决


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

8 years 前

已解决


Triangle sequence
A sequence of triangles is constructed in the following way: 1) the first triangle is Pythagoras' 3-4-5 triangle 2) the s...

8 years 前

已解决


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

8 years 前

已解决


Sorted highest to lowest?
Return 1 if the input is sorted from highest to lowest, 0 if not. Example: 1:7 -> 0 [7 5 2] -> 1

8 years 前

已解决


Is this triangle right-angled?
Given three positive numbers a, b, c, where c is the largest number, return *true* if the triangle with sides a, b and c is righ...

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


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

8 years 前

已解决


Generalized sorting
Write generalized sort function |sortg()| that sorts array elements in “ascending” order with given comparison funct...

8 years 前