photo

Jonathon Gibson


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

Followers: 0   Following: 0

统计学

MATLAB Answers

0 个提问
9 个回答

排名
1,948
of 300,886

声誉
34

贡献数
0 个提问
9 个回答

回答接受率
0.00%

收到投票数
5

排名
 of 21,104

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 171,502

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 2
  • First Answer

查看徽章

Feeds

排序方式:

已回答
odeFunction: List variables through loop
You could combine [x1,x2,x3,x4,x5,x6,y1,y2,y3,y4,y5,y6] beforehand into a matrix XY. You would iteratively concatenate your x va...

7 years 前 | 1

已回答
how can i sort columns of a matrix in ascending order using loops without using the functions max,min,sort?
Here's a really simple, inefficient way: M = rand(15,10) for col = 1:size(M,2) for iters = 1:size(M,1) ...

7 years 前 | 1

| 已接受

已回答
How can i find the number of pixels in any RGB image?
image = imread('image.jpg'); [height, width, channels] = size(image); pixels = height * width

7 years 前 | 0

| 已接受

已回答
Search and Replace file
If you're on a Unix system, and currently in the directory with the conf files, you can run from MATLAB: !sed -i 's/Amplitu...

7 years 前 | 1

| 已接受

已回答
Change the axis limits of a SVM plot
To change the axis limits, you can add axis([xmin xmax ymin ymax]) to the end of your script. This will make some of the higher ...

7 years 前 | 1

| 已接受

已回答
Hey, i'm new to matlab please help me understand the following statement.
diff(S,1,2) will return the difference between each adjacent pair of columns in S, this is approximating the x-derivative of the...

7 years 前 | 0

| 已接受

已回答
why am i not able to create user ID to access ONRamp?
Go into your matlab profile first, set the username in there, and then try accessing the on ramp courses.

7 years 前 | 0

已回答
Assigning values for vector with number sequence
Here's how I went about it: First, we try to find a pattern in the sequence. To make it easier to see, let 1=r1 and 2=r2 and ...

7 years 前 | 0

已回答
fprintf not writing same information from command window
If you want different formatting depending on the row, you can print each row individually: fileID = fopen('xlsreadtrial.tx...

7 years 前 | 1