Thomas - MATLAB Central
photo

Thomas


X-Rite, Incorporated

Last seen: 4 months 前 自 2010 起处于活动状态

Followers: 0   Following: 0

消息

Professional Interests: image processing, signal processing, color

统计学

All
CodyMATLAB AnswersFile ExchangeZoom OutFrom 02/10 to 04/25Use left and right arrows to move selectionFrom 02/10Use 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

14 个提问
0 个回答

File Exchange

1 文件

Cody

0 个问题
19 个答案

排名
5,802
of 298,247

声誉
4

贡献数
14 个提问
0 个回答

回答接受率
28.57%

收到投票数
4

排名
7,699 of 20,554

声誉
122

平均
2.00

贡献数
1 文件

下载次数
2

ALL TIME 下载次数
1226

排名
23,520
of 160,685

贡献数
0 个问题
19 个答案

评分
210

徽章数量
2

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

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

查看徽章

Feeds

排序方式:

提问


How to combine panes, or how to redock an undocked file in main editor pane
When I am editing multiple files, I have them all open in one undocked editor window, each one with it's own tab. Sometimes I ...

8 months 前 | 1 个回答 | 0

1

个回答

提问


Functions returning part of N-D data
I made a class that has methods to return specific slices of an n-d array. I can use these methods as if they are properties, an...

9 months 前 | 1 个回答 | 0

1

个回答

提问


How do I turn off figure toolbar and turn on axes toolbar
I have an application I made with GUIDE. If I turn on the figure toolbar (set figure.toolbar property to 'figure'), the axes exp...

5 years 前 | 0 个回答 | 0

0

个回答

提问


appdesigner code view ANNOYANCE!
the appdesigner code view has gotten into a state where every time i start a new line it pops up a code completion thing to inse...

5 years 前 | 1 个回答 | 0

1

个回答

提问


uitable UserData property has inconsistent type
I have an old GUI created with Guide that has a uitable. When I run it in 2014b, its property 'UserData' is initialized to ...

10 years 前 | 1 个回答 | 0

1

个回答

提问


Set axes color to 'none' in guide
How can I set the Color property of an axes to 'none' in GUIDE? I can't type 'none' in the property value box in property in...

10 years 前 | 0 个回答 | 0

0

个回答

提问


New Graphics troubles with GUIDE
I am having trouble updating a GUIDE built gui to work with 2014b. I have looked at the relevant answers and tried the apps sugg...

10 years 前 | 0 个回答 | 0

0

个回答

提问


How do I assign 3D variables when third dimension has size one?
Is this a bug? If not, how am I supposed to code this so dd1 has shape [2 3 1]? >> sd1 = reshape(1:12,[4,3,1]) sd1 = ...

10 years 前 | 1 个回答 | 0

1

个回答

提问


Unexpected singleton dimension removal
When I create a three dimensional array and assign it to an undefined array, the assignment does not behave as I expect if the ...

11 years 前 | 2 个回答 | 1

2

个回答

提问


Can I make exported functions list bigger?
In the library version of deploytool, 2013b, the exported functions appear in a tiny little list, even though the 'files require...

11 years 前 | 0 个回答 | 0

0

个回答

已解决


Extract leading non-zero digit
<http://en.wikipedia.org/wiki/Benford%27s_law Benford's Law> states that the distribution of leading digits is not random. This...

12 years 前

已解决


Make a Palindrome Number
Some numbers like 323 are palindromes. Other numbers like 124 are not. But look what happens when we add that number to a revers...

12 years 前

已解决


Which doors are open?
There are n doors in an alley. Initially they are all shut. You have been tasked to go down the alley n times, and open/shut the...

12 years 前

已解决


Trimming Spaces
Given a string, remove all leading and trailing spaces (where space is defined as ASCII 32). Input a = ' singular value deco...

12 years 前

已解决


Return a list sorted by number of occurrences
Given a vector x, return a vector y of the unique values in x sorted by the number of occurrences in x. Ties are resolved by a ...

12 years 前

已解决


Balanced number
Given a positive integer find whether it is a balanced number. For a balanced number the sum of first half of digits is equal to...

12 years 前

已解决


Replace NaNs with the number that appears to its left in the row.
Replace NaNs with the number that appears to its left in the row. If there are more than one consecutive NaNs, they should all ...

12 years 前

已解决


Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

12 years 前

已解决


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

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

12 years 前

已解决


Target sorting
Sort the given list of numbers |a| according to how far away each element is from the target value |t|. The result should return...

12 years 前

已解决


Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...

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

12 years 前

已解决


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

12 years 前

已解决


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

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

12 years 前

已解决


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

12 years 前

已解决


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

12 years 前

已解决


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

提问


Compiled program won't run, win7 win8 64 bit
I have a compiled matlab application with GUI that I have regularly distributed when built with the 32 bit MCR. I recently compi...

12 years 前 | 0 个回答 | 0

0

个回答

加载更多