photo

theblueeyeswhitedragon


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

Followers: 0   Following: 0

统计学

All
MATLAB Answers

15 个提问
0 个回答

File Exchange

10 文件

Cody

0 个问题
4 个答案

排名
41,034
of 300,321

声誉
1

贡献数
15 个提问
0 个回答

回答接受率
60.0%

收到投票数
1

排名
13,968 of 20,913

声誉
19

平均
0.00

贡献数
10 文件

下载次数
2

ALL TIME 下载次数
192

排名
63,651
of 168,093

贡献数
0 个问题
4 个答案

评分
50

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • First Review
  • First Submission
  • Thankful Level 3
  • Solver

查看徽章

Feeds

排序方式:

提问


How to plot step response of second order system?
omgNot = 1; zetaNot = 0.6; H = tf(omgNot^2,[1, 2*zetaNot*omgNot, omgNot^2]); stepplot(H) I am using the code above to plot t...

6 years 前 | 4 个回答 | 0

4

个回答

提问


How to export cell array of strings and doubles in Excel?
I am trying to export a cell array which contains both double and string elements with the xlswrite() function. <</matlabcent...

7 years 前 | 0 个回答 | 0

0

个回答

提问


How to convert a 1XM array into NXM array?
I have a 1x12 array, where each element is a vector of doubles (the vectors have different lengths). How can I convert to a NX12...

7 years 前 | 1 个回答 | 0

1

个回答

提问


How to set colormap for a 3D surface that is projected onto the XY Plane?
Recently, I asked a question on improving the performance of plotting functions like barh. The solution is very time efficient (...

7 years 前 | 1 个回答 | 0

1

个回答

已提交


CSV with Headers Import/Export
Performs conversions csv to mat, and mat to csv. Works for csv files with and without header information.

7 years 前 | 2 次下载 |

0.0 / 5
Thumbnail

提问


Why do plotting functions like bar or barh take a long time to execute?
I have a 1x600 vector of doubles, where each element represent the duration of a certain engineering process. I want to get a ho...

7 years 前 | 1 个回答 | 1

1

个回答

提问


How to multiply a 3x3 kernel to a gray scale image (uint8) ?
Gx = [-1 0 1;-2 0 2;-1 0 1]; Gy = [-1 -2 -1; 0 0 0; 1 2 1]; img = imread('Bikesgray.jpg'); [rws, cls] = size(img); mag ...

7 years 前 | 1 个回答 | 0

1

个回答

提问


How to update titles and text annotations of subplots located on the same uitab?
% TAB 1 S.tabH(1) = uitab(S.histoTab, 'Title', 'Error X'); S.P1_histo{1} = subplot(2,2,[1 3], 'Parent', S.tabH(1)); ...

7 years 前 | 1 个回答 | 0

1

个回答

提问


How to compare exponential numbers with 7-9 digits of accuracy
I am creating a GUI that allows the user to delete data points from a graph by clicking on them. The method has been working for...

7 years 前 | 1 个回答 | 0

1

个回答

提问


Should I declare GUI components in a struct or as separate variables?
function script6() fig = figure('units', 'pix', 'position', [350, 200, 400, 170], 'menubar' , 'none'); popmenuh = uicontro...

7 years 前 | 1 个回答 | 0

1

个回答

提问


How to use keypressfcn to allow the user only to copy from an edittext?
function [] = GUI_15() S.fh = figure('units','pixels',... 'position',[300 300 400 120],... 'men...

7 years 前 | 0 个回答 | 0

0

个回答

提问


How to use get and set to remove the last value of a string in a text uicontrol?
function script4() fig = figure('units', 'pix', 'position', [300, 300, 300, 300], 'menubar','none','resize', 'off'); pushbutt...

7 years 前 | 1 个回答 | 0

1

个回答

提问


How to use set to change a property of a uicontrol?
function [] = script2() fig = figure('units','pixels','position',[300 300 500 400], 'menubar','none','name','GUI_3','numbertit...

7 years 前 | 1 个回答 | 0

1

个回答

提问


How to access a third generation node data in a .xml file?
I would appreciate if you gave me an explanation or pseudo code for accomplishing this, because the code available in other disc...

7 years 前 | 0 个回答 | 0

0

个回答

提问


I want to store each column in struct field, but don't know the data type. How can I accomplish this for any number of columns, without having to use '%s%d%d'?
filename= 'dataFil.txt'; fid = fopen( filename, 'r' ) ; data = textscan(fid, '%s%d%d', 'delimiter', ',') fclose(fid)...

7 years 前 | 1 个回答 | 0

1

个回答

已提交


Piano (Whistle, Flo Rida)
Plays a piano version of the song Whistle by Flo Rida

8 years 前 | 0 次下载 |

1.0 / 5

已提交


Validate ID
String Operations

8 years 前 | 0 次下载 |

0.0 / 5

已提交


Reflection about a line
Reflection about y = x line

8 years 前 | 3 次下载 |

0.0 / 5
Thumbnail

已提交


Antinodal Curves Animation
Animation of Antinodal Curves

8 years 前 | 1 次下载 |

0.0 / 5
Thumbnail

已提交


Transformation of a Set of Vectors (Limited Domain)
Transformation of a Set of Vectors

8 years 前 | 0 次下载 |

0.0 / 5
Thumbnail

已提交


Taylor series approximation for sin(x)
Approximates the value of function sin(x) by using Taylor Series expansion

8 years 前 | 3 次下载 |

0.0 / 5

已提交


Patterns using loops
Generates patterns using for loops

8 years 前 | 1 次下载 |

0.0 / 5
Thumbnail

已解决


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

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

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

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

8 years 前

提问


How to edit properties of a plot and highlight certain points in the graph at the same time?
This is the code I wrote for graphing the Phase Plot of the differential equation dy/dt = y(y-2)(y-2)(y-4)(y-6), but I am get...

8 years 前 | 1 个回答 | 0

1

个回答

已提交


Monte Carlo Simulation
-

8 years 前 | 4 次下载 |

0.0 / 5

已提交


Storm Data Analysis
-

8 years 前 | 0 次下载 |

0.0 / 5