
埃博拉酱
Statistics
RANK
2,112
of 275,587
REPUTATION
23
CONTRIBUTIONS
17 Questions
22 Answers
ANSWER ACCEPTANCE
58.82%
VOTES RECEIVED
9
RANK
7,726 of 18,563
REPUTATION
106
AVERAGE RATING
5.00
CONTRIBUTIONS
16 Files
DOWNLOADS
41
ALL TIME DOWNLOADS
503
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Submitted
埃博拉酱 的 并行计算 工具箱 Parallel Computing
埃博拉酱的并行计算工具箱,提供一系列实用的并行计算辅助功能: 为无法一次性全部读入内存的大文件,提供单线程读写、多线程计算的解决方案 替官方修复MATLAB在含有非ASCII字符的主机名的主机上不能启动并行池的bug 将指定的GPU分配到并行进程 ……
3 days ago | 5 downloads |

Submitted
Image5D - OIR, TIFF
快速随机读写5D图像格式,目前支持读入 Olympus OIR 和读写 OME-TIFF,比市面上流行的竞品BioFormats要快得多,80多㎇的OIR不到3s就能打开
3 days ago | 3 downloads |

Submitted
埃博拉酱的 MATLAB 扩展 Extension
提供许多内置函数的bug修复(是的,我们有在替官方修bug)、功能升级版,以及一系列内置函数所欠缺,但却常用的增强功能(部分功能仅支持Windows系统)。例如,多用户路径管理系统,C++指针,Win32文件,内存映射文件,STL风格的容器(队列,栈,向量...
3 days ago | 7 downloads |

Submitted
埃博拉酱 的 图像处理 工具箱 EbolaChan's Image Processing Toolbox
对图像处理工具箱的扩展
18 days ago | 8 downloads |

Submitted
从 GitHub Release 检查更新 Update
从 GitHub Release 检查是否有更新,如果有,在命令行窗口发送提醒消息
24 days ago | 3 downloads |

How to Generate Database from Cell array In Table form in MATLAB
cell2table
1 month ago | 0
Saving output files as input file names while running though a for loop
filenames = struct2table(dir('*.csv')).name; %%% Start looping over files for k= 1:numel(filenames) X= readmatrix(filenam...
1 month ago | 0
Automatically create variable names
NameIndex=1; Value=2; eval(sprintf('Name_%u=%d',NameIndex,Value)); This is possible by eval but as mentioned in the comments ...
1 month ago | 0
MEX file debugging with MS Visual Studio
As @Friedrich said, MEX file functions are loaded dynamically, so the function needs to be called once in MATLAB to load symbols...
1 month ago | 0
Solved
Number of toolboxes?
Return a number equal to the number of toolboxes available to the Cody solvers.
2 months ago
Problem
Integer vector optimal lossless deduplication
You're given an integer vector A, a Min scalar and a Max scalar. You can assume all elements in A are in [Min,Max] range, and nu...
2 months ago | 2 | 2 solvers
Submitted
作图 颜色 分配 优化 Plot Color Allocate Optimization
埃博拉酱的全局优化工具包,提供巧妙的全局优化类应用
4 months ago | 3 downloads |

Problem
Is the number of 1s in a binary integer odd or even?
Your function should turn the input integers into binary form and count the number of 1s in the binary. If the number is odd, re...
4 months ago | 1 | 15 solvers
Problem
Ambiguous concatenation
Give two expressions that can have different meaning inside/outside a concatenation expression.
6 months ago | 0 | 3 solvers
Submitted
MATLAB 括号 语法 大全 Parentheses Syntax
MATLAB三大括号()[]{}傻傻分不清?用法经常搞混?各种出错不知道该用哪个?本示例列出了MATLAB三大括号的所有语法,全网最详尽最全面!吃透了它你就再也不会有问题!
7 months ago | 3 downloads |

Solved
Check if equal
Return true if all the elements of an nD array are equal, false otherwise.
8 months ago
Compare strings which contains the same pattern by ignoring case sensitivity and some expressions like underscores
You might remove those expressions to be ignored and unify the strings all to lowercase before doing actual comarison.
9 months ago | 0
| accepted
How to I create variables with different names in the workspace using for loop?
You're too new to MATLAB to write any actual code. Learn your first course on https://matlabacademy.mathworks.com/ before doing...
9 months ago | 0
Solved
Curry a function handle
From Wikipedia, Currying: In mathematics and computer science, currying is the technique of converting a function that takes mu...
10 months ago
Problem
Merge structs on fields
Merge a bunch of structs into one, containing the field names and corresponding values of all input structs. For duplicate field...
10 months ago | 0 | 4 solvers
Solved
Exhaust all possible logical vectors
Input a length argument and list all possible logical vectors of that length. My solution is of size 29. Can you find an even s...
11 months ago
Solved
Maximum of ND-array
Find the maximum element of a N dimensional array. Example: A=[1 2 4 ; -20 4 10]; The maximum is 10.
11 months ago
Problem
Exhaust all possible logical vectors
Input a length argument and list all possible logical vectors of that length. My solution is of size 29. Can you find an even s...
11 months ago | 1 | 17 solvers
Solved
Undocumented MATLAB tricks No. 2 - Tell the parfor index
Your function is called in multiple for-loops, and the loop indices are given to your function. One of these indices are from a ...
11 months ago
数值索引和逻辑索引哪个更快?
测试方法 测试函数: function IndexingTest(FullNumber,SelectNumber) Set=false(FullNumber,1,'like',logical(FullNumber)); Index=cast(ran...
11 months ago | 0
| accepted
Question
数值索引和逻辑索引哪个更快?
Index=find(Array==Element); Array(Index)=0 上述代码往往会被提示可以省略find,直接使用逻辑索引而不是数值索引。 省略一个函数调用当然会更快,这不难理解。 但如果Index还将要继续用于后续其它数组的索引...
11 months ago | 1 answer | 0
1
answer非线性微分方程
>> s = dsolve(eqn,cond) 警告: Unable to find symbolic solution. 没有精确解。 这没什么奇怪的,一个一般的微分方程大概率没有精确解。
11 months ago | 1