photo

Sky Sartorius


Last seen: 3 days 前 自 2010 起处于活动状态

Followers: 2   Following: 0

消息

Aerospace engineer Professional Interests: aircraft design, UAVs, optimization, rotorcraft, education

统计学

All
MATLAB Answers

1 个提问
14 个回答

File Exchange

38 文件

Cody

6 个问题
206 个答案

排名
1,885
of 299,791

声誉
36

贡献数
1 个提问
14 个回答

回答接受率
0.0%

收到投票数
8

排名
312 of 20,807

声誉
4,881

平均
4.30

贡献数
38 文件

下载次数
83

ALL TIME 下载次数
44353

排名
939
of 165,966

贡献数
6 个问题
206 个答案

评分
2,303

徽章数量
7

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 2
  • First Answer
  • Quiz Master
  • CUP Challenge Master
  • Personal Best Downloads Level 4
  • Editor's Pick
  • First Review
  • 5-Star Galaxy Level 5
  • GitHub Submissions Level 3
  • First Submission
  • Tiles Challenge Master
  • Speed Demon

查看徽章

Feeds

排序方式:

已回答
Randomly select a number from a column of a stored matrix, stores the respective row
You can use randi to randomly generate the index you need, rowInd = randi(256,1); then use that index to pull out the row from...

4 years 前 | 1

| 已接受

已回答
Plot x^2+y^2=4
There are a few ways to go about this. One that is somewhat agnostic to what the equation is trying to represent (in this case, ...

5 years 前 | 1

| 已接受

已回答
select random number from an array with probabilities
You can query the cumulative probabilities: S = [4, 3.9, 3.8]; w = [0.5, 0.4, 0.1]; w = w/sum(w); % Make sure probabilites ad...

5 years 前 | 1

已回答
get the x-value of a point on curve
This is a table lookup / interpolation problem. For your data, you'll first have to make sure there aren't any repeated y values...

5 years 前 | 5

已回答
how do i open a browser in matlab ?
Use uigetfile: https://www.mathworks.com/help/matlab/ref/uigetfile.html Or if you have the toolbox, help uigetimagefile

5 years 前 | 0

已回答
Size of a figure that I copy from Matlab to Powerpoint
I find that MS products sometimes have behavior as though they're taking a guess at what the pasted figure size should be. I fin...

5 years 前 | 0

已回答
How can I create a 3D plot of data with dots of different color?
Use a scatter plot and CData: n = 100; xData = 1:n; % Placeholder - I assume you have additional information about the data to...

5 years 前 | 0

已回答
How to create an object using class name
A quick and dirty approach that will work in many cases is to use eval: function new = createNewObjectOfThisClass(original) ne...

5 years 前 | 0

已回答
Converting a row to diagonal matrix
Another guess at the intended meaning of the question could be that the values should be filled along the diagonals (instead of ...

5 years 前 | 0

提问


What method do I overload to control display behavior in the workspace window?
When using a subclass of double (for example the ExtendDouble class from the <https://www.mathworks.com/help/matlab/matlab_oop/b...

8 years 前 | 0 个回答 | 0

0

个回答

已回答
X Y Z coordinates matrix
You can use the |cat| command to 'stack' your three 2d matrices into a single 3d matrix: M = cat(3,x,y,z); This will giv...

8 years 前 | 0

| 已接受

已回答
Generate Random numbers from a 2 D probability density function
Conceptually, you can generate random numbers for any arbitrary distributions by # Converting the pdf to a cdf. # Generating...

8 years 前 | 0

已回答
How to create an Object insertable in a 3D plot?
One approach could be to leverage the plotted object's XData, YData, and ZData, homogeneous coordinates, and the |makehgtform| f...

8 years 前 | 0

已回答
Reaching the element of an array passed to a function
The first step needs to be to find the indices of the array that correspond to the conditional statement. You can use something ...

8 years 前 | 0

| 已接受

已回答
How do i fit my data with two functions and a knot between them
The |tanh| function can be handy for creating a one-liner piece-wise function for feeding into a curve fitting tool. If you don'...

8 years 前 | 0

| 已接受