photo

Tigersnooze


Northeastern University

自 2011 起处于活动状态

Followers: 0   Following: 0

消息

统计学

MATLAB Answers

0 个提问
9 个回答

排名
2,067
of 299,759

声誉
32

贡献数
0 个提问
9 个回答

回答接受率
0.00%

收到投票数
10

排名
 of 20,794

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 165,756

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 1
  • First Answer

查看徽章

Feeds

排序方式:

已回答
Exporting data sets to excel
xlswrite is what you'll want to use. Correct usage can be found in the help, but I'll put it here for you: xlswrite(filena...

13 years 前 | 1

已回答
Mysterious GUI error messages
This may be a dumb question, but are you also saving the new figure as 'ClusterGUI4.fig', or as applicable?

13 years 前 | 0

已回答
Obtaining data from a .fig file
3D plot you say? First open the .fig file, and select the data you want to get back. Then, just type these three lines in the ...

14 years 前 | 0

| 已接受

已回答
renaming a lot of folders automatically by MATLAB
Assuming you have the names of all of the folders in question, try something like: for i = 1:length(directories) cd(dire...

14 years 前 | 1

已回答
Split array of strings and convert to numbers?
What does your code look like? Normally when I use xlsread with a multi-column spreadsheet I get a multi-column array in return...

14 years 前 | 0

已回答
Using nargin in functions
Your problem is that sum2 doesn't know what to do when b is not defined--as you said, this can be solved by putting in the _narg...

14 years 前 | 0

已回答
Test every element in matrix
You can say something like this, instead of using a loop (assuming the matrix is called A): A(A > a) = A(A > a) + arithmetic....

14 years 前 | 0

| 已接受

已回答
How to write to a text file several times without overwriting the old values
I think if you do outputFile = fopen('output.txt', 'a+'); It would work when put in a loop. 'a' will append, where 'w' will...

14 years 前 | 8

已回答
How do i put content in a text box into a list in GUI?
Just to clarify--you have the textbox in a GUI, and you want to put all numbers from the text box into a list? If it's a list o...

14 years 前 | 0