photo

Will


Last seen: 4 years 前 自 2017 起处于活动状态

Followers: 0   Following: 0

消息

统计学

All
MATLAB Answers

1 个提问
1 个回答

Cody

0 个问题
18 个答案

排名
182,226
of 300,750

声誉
0

贡献数
1 个提问
1 个回答

回答接受率
0.0%

收到投票数
0

排名
 of 21,073

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
27,738
of 170,837

贡献数
0 个问题
18 个答案

评分
190

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • First Answer
  • Revival Level 1
  • Solver
  • First Review

查看徽章

Feeds

排序方式:

已回答
Exclude files for CodeCoveragePlugin
I came here hoping to find an answer to this question, but unfortunately there isn't one yet. The only solution I can come up w...

5 years 前 | 0

已解决


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

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

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

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

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

6 years 前

已解决


Getting the row and column location from a matrix
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to get <http://www.mathwo...

6 years 前

已解决


Generate a string like abbcccddddeeeee
This is the string version of Problem 1035. <http://www.mathworks.com/matlabcentral/cody/problems/1035-generate-a-vector-like-1-...

6 years 前

已解决


All capital?
Are all the letters in the input string capital letters? Examples: 'MNOP' -> 1 'MN0P' -> 0

6 years 前

已解决


Determine the length of a string of characters
Determine the length of a string of characters

6 years 前

已解决


y equals x divided by 2
function y = x/2

6 years 前

已解决


Is the input divisible by 3?
Return true if the input is divisible by 3 and false if not.

6 years 前

已解决


Remove NaN ?
input -> matrix (n*m) with at least one element equal to NaN; output -> matrix(p*m), the same matrix where we deleted the enti...

6 years 前

已解决


Binary
Given a positive, integer n, create a function that returns the respective binary number in the form of a vector. Example: ...

6 years 前

已解决


Find the logic
There exists one logic in between input and output. Find it (easy math). Example 1: x=13 then y=339; Example 2: x=26...

6 years 前

已解决


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

6 years 前

已解决


02 - Vector Variables 2
Make the following variable: <<http://samle.dk/STTBDP/Assignment1_2b.png>>

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

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

6 years 前

提问


How do I assign a context menu to only the column header row of a uitable?
Using MATLAB R2015b... I'm doing something like this: Table = uitable(...); TableMenu = uicontextmenu; MenuItem1 = u...

9 years 前 | 0 个回答 | 0

0

个回答