photo

Julius


Georgia Institute of Technology

自 2013 起处于活动状态

Followers: 0   Following: 0

消息

统计学

MATLAB Answers

3 个提问
6 个回答

排名
4,934
of 297,503

声誉
10

贡献数
3 个提问
6 个回答

回答接受率
100.0%

收到投票数
2

排名
 of 20,449

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 159,017

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • First Review
  • Thankful Level 1
  • Knowledgeable Level 1
  • First Answer

查看徽章

Feeds

排序方式:

提问


Can an executable programs run on both 64-bit and 32-bit machines?
Hello all, I currently use a 64-bit Windows machine to compile my GUI into executable programs. Can the EXE program run on bo...

11 years 前 | 1 个回答 | 0

1

个回答

提问


Cannot generate MEX function
I tried to use MATLAB Coder to generate a MEX function from a MATLAB function. I used the simplest example to make sure the M...

11 years 前 | 1 个回答 | 0

1

个回答

已回答
cumsum but withe the twelfth observation
Just do cumsum repeatedly for 12 times.

12 years 前 | 0

已回答
Separate data into matrices and plot
I recommend using "readtext" function from File Exchange (http://www.mathworks.com/matlabcentral/fileexchange/10946-readtext). ...

12 years 前 | 0

已回答
For Loop and Resistance
There is no need to use for loop to do this. If you want 3 pieces, just piece1 = initialData(1:10000); piece2 = initi...

12 years 前 | 0

已回答
Graphing a function and enabling a user to change variables
Type "guide" from the command window of Matlab, then study the "GUIDE templates." GUI design requires some learning. Not very...

12 years 前 | 0

已回答
How to verify Eulers Theory
sum = 0; threshold = 1e-6; for ii = 1 : 1 : 100000 sum = sum + 1/ii^2; if abs(sum - pi^2/6) <= threshold ...

12 years 前 | 0

| 已接受

已回答
Extract text data without knowing the size of the data.
You can try a function called "readtext" Download link: http://www.mathworks.com/matlabcentral/fileexchange/10946-readtext

12 years 前 | 0

| 已接受

提问


Backward compatibility of MCR
The problem I have encountered is: I compiled an EXE with Matlab compiler on my computer (version R2011a, i.e. MCR version is...

12 years 前 | 1 个回答 | 2

1

个回答