Jae Song - MATLAB Central
photo

Jae Song


Last seen: 5 days 前 自 2015 起处于活动状态

Followers: 0   Following: 0

消息

统计学

All
MATLAB AnswersCodyFrom 09/15 to 04/25Use left and right arrows to move selectionFrom 09/15Use 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

0 个提问
13 个回答

Cody

0 个问题
1 个答案

排名
1,420
of 298,180

声誉
50

贡献数
0 个提问
13 个回答

回答接受率
0.00%

收到投票数
14

排名
 of 20,546

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
120,971
of 160,541

贡献数
0 个问题
1 个答案

评分
20

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Revival Level 1
  • Knowledgeable Level 2
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已回答
Shortcuts for switching between windows on Mac OS X
Command+0 for Command Window Command+Shift+0 for Editor

8 years 前 | 1

已回答
How to set values of specific data columns in a uitable
How about something like this? In the code, the initial data set variable (tdata) is updated using new column data (newdata). ...

9 years 前 | 2

已回答
Creating a matrix with numbers
m = [2000:1200:666200]';

9 years 前 | 1

| 已接受

已回答
Vectors must be the same length.
It looks like the variables xc and t have same size. So if you let x2 = fix(xc) instead of x2 = fix(x1). The plot should work....

9 years 前 | 2

已回答
Plot from excel sheet to matlab
You can simply read data in an Excel file using the readtable function. Then, read the column data as X and Y variables into ...

9 years 前 | 6

| 已接受

已回答
does matlab support database? if yes, how to use it?
Matlab does support various database products. You need to get Database Toolbox. Please see the link for detail information. ...

9 years 前 | 0

| 已接受

已回答
Time series code not quite right, thoughts?
I don't know if this is the plot you were trying to generate. I made the following correction to make the plot to work. 1) *a...

9 years 前 | 0

已回答
Newton-raphson for a specific function
In the following line: dx= Dc/(J); if the computation of Dc/(J) is not matrix computation, you need to use ./ Dc...

9 years 前 | 0

已回答
Plotting results of for loop on one graph
The z_1 matrix variable needs to have index; Please see the following code x = 0:0.001:1.1; s = size(x,2); %: get the a...

9 years 前 | 1

已解决


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

9 years 前

已回答
csv file with a whitespace before comma
How about using the offset parameters of the csvread function. For your example: csvread('test.csv',0,0,[0,0,0,2])

9 years 前 | 0

已回答
Evaluating Array Values with Different Functions Based On Array Index Value
You can put an index for the Pcr variable ( and SR variable as well). Please try the following code. for i=1:1:40 if ...

9 years 前 | 1

| 已接受

已回答
How can I run preloaded csv data through a loop?
You can put the three variables (IM_1,IM_2,IM_3) into a cell array variable (IM_s) and loop through the cell array variable. Ple...

9 years 前 | 0

已回答
Changing Variable Name during "While" loop
You can use the 'eval' function. Please see the following code: x = 1; while x<=n if Choice_Accuracy(x,1) == 1 ...

9 years 前 | 0