photo

dk


Last seen: 2 months 前 自 2011 起处于活动状态

Followers: 0   Following: 0

消息

统计学

All
MATLAB Answers

3 个提问
5 个回答

Cody

0 个问题
8 个答案

排名
6,302
of 299,911

声誉
7

贡献数
3 个提问
5 个回答

回答接受率
66.67%

收到投票数
2

排名
 of 20,835

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
43,008
of 166,527

贡献数
0 个问题
8 个答案

评分
90

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • First Review
  • Thankful Level 1
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已回答
Create a two-point distribution?
N=100; x=sign(rand(N,1)-0.5);

6 years 前 | 1

已回答
plotting data which extends several years
Try one of these time = [time_2007,time_2008+365]; plot(time,data); or time=[datenum('2007,1,1')+time_2007,dat...

13 years 前 | 0

已解决


The Goldbach Conjecture
The <http://en.wikipedia.org/wiki/Goldbach's_conjecture Goldbach conjecture> asserts that every even integer greater than 2 can ...

13 years 前

已解决


Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...

13 years 前

已解决


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

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

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

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

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

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

13 years 前

提问


DelaunayTri
I already have a triangulation (x,y,z,tri). How can I create a DelaunayTri class without re-triangulating?

14 years 前 | 2 个回答 | 0

2

个回答

已回答
Change a variable name in a dataset array
I knew there should be an easier way. Thanks

14 years 前 | 0

提问


Change a variable name in a dataset array
I would like to change the name of one of the variable names in a dataset array. I can do it like this temp=get(DS); vn=tem...

14 years 前 | 2 个回答 | 0

2

个回答

已回答
legend doesn't resize with figure
Make sure "Match figure screen size" is checked under Preferences-->Figure Copy Template-->Copy Options.

14 years 前 | 0

已回答
Microsoft Word and Figures
Save your figure using saveas() (use emf or png). When inserting the saved figure to Word use "link to file" option.

14 years 前 | 0

提问


getting the axis position correctly
I can get the position of the axis easily figure,plot([0 1], [0 1]) axis equal AxesHandle=findobj(gcf,'Type','axes'); ge...

14 years 前 | 3 个回答 | 1

3

个回答