Answered
非线性微分方程
>> s = dsolve(eqn,cond) 警告: Unable to find symbolic solution. 没有精确解。 这没什么奇怪的,一个一般的微分方程大概率没有精确解。

2 years ago | 1

Answered
无法连接网络,启动matlab立即报错
你MATLAB安装有问题,卸载重装吧

2 years ago | 0

Answered
我的MATLAB使用不了滑动条,应该是缺少uislider函数,但是不知道怎么修补
uislider是R2016a推出的函数,你是不是MATLAB版本太老? 如果版本没问题就是安装损坏了,卸载MATLAB重装吧

2 years ago | 0

Answered
错误使用 sprintf 无法将 'matlab.ui.Figure' 值转换为 'int64'
gcf是当前图窗Figure对象,又不是一个数值,怎么可能用sprintf当作数值输出呢?你要输出图像编号的话就得手动指定一个数值编号

2 years ago | 0

Answered
Is there any data type equivalent for queue?
parallel.pool.PollableDataQueue As revealed by the package name, it can be shared among parallel workers.

2 years ago | 0

Question


What's the best way to prevent a class from being instantiated?
I want this class to be completely static and can never be instantiated. It only contains a bunch of static methods and constant...

2 years ago | 1 answer | 0

1

answer

Answered
Why do I get a permission denied error in regards to classpath.txt or pathdef.m when starting MATLAB?
This is a very ugly design! All path settings should be user-wide instead of system-wide by default! MATLAB default pathdefs sh...

2 years ago | 1

Question


How to limit the usage of GPU to only one parallel worker?
Since the GPU memory is very limited, it can only undertake one job at a time, but much faster than the same job on CPU. Now I h...

2 years ago | 1 answer | 0

1

answer

Question


How to declare a function as Static if it is defined as an individual file under the class folder?
In the class definition file we define Static functions as such: methods(Static) function SomeFunction() end end However, w...

2 years ago | 1 answer | 0

1

answer

Question


How to elegantly open or create new file for reading and writing but not discard existing contents?
If the file exists, open it for reading and writing, but don't discard existing content; else, create it. Isn't it a very commo...

2 years ago | 2 answers | 0

2

answers

Answered
save problem: -STRUCT must be the name of a scalar structure variable
save(filename,'-fromStruct',test);

2 years ago | 1

Question


How to open a script in a running MATLAB instance with Windows Command Line?
Double-click a script file in Windows File Explorer will open the script in a running MATLAB instance if it exists. Only when no...

3 years ago | 1 answer | 1

1

answer

Question


Can simscape products simulate a solar system?
I didn't find a way to set a series of free bodies that are only affected by gravity. Free bodies seem totally impossible in sim...

3 years ago | 1 answer | 0

1

answer

Question


What is prodofsize?
I saw it in the document of cellfun, but it does not seem to exist as an actual function, i.e., it's impossible to call it direc...

3 years ago | 1 answer | 0

1

answer

Answered
Every time I push to the remote GitHub repository, I have to re-input my username and password. Is there some way to avoid this by having MATLAB store this information?
I tried all steps given by these two answers and the document on https://www.mathworks.com/help/matlab/matlab_prog/set-up-git-so...

3 years ago | 3

Question


How to perform image registration on GPU
imregister does not support GPU unfortunately. Are there any workarounds? I have hundreds of millions of images to register and ...

3 years ago | 1 answer | 0

1

answer

Question


Why the rows are the first dimension of array by design?
I know it's impossible to change now because of the compatibility burden. But why did the first developers decided to use rows a...

3 years ago | 1 answer | 0

1

answer

Question


How to shut down connection to Arduino device when the arduino variable is not in the workspace?
The arduino object is cleared from the workspace, but the connection remains, because I can't create a new connection. MATLAB to...

4 years ago | 0 answers | 0

0

answers

Question


MatFile grows exponentially larger in an empty table replacement loop?
First create a MatFile: a=matfile("Test.mat"); Then create an empty table: a.Data=table('Size',[0 1],'VariableTypes',"uint8")...

4 years ago | 1 answer | 0

1

answer

Answered
如何制作彩色幻影坦克?How to generate an ARGB Mirage Tank?
自己解决了这个问题,分享一波~ function varargout = MirageTankV2(Image1,Image2,varargin) %输入两张图,制作幻影坦克! %Image1和Image2三个维度视为列、行、G/AG/RGB/ARG...

4 years ago | 0

| accepted

Question


如何制作彩色幻影坦克?How to generate an ARGB Mirage Tank?
网上的教程都是黑白的,还要用到PS。我想幻影坦克不就是利用了Alpha通道么?用MATLAB应该也能做吧?求大佬指教! A Mirage Tank is a specially made PNG image that show different col...

4 years ago | 1 answer | 1

1

answer

Answered
How to avoid error when whether the function has returns is unknown?
This is my workaround: function Output = PairArrayArrayfun(Function,Array1,Array2,ArrayDimension,UniformOutput) CatDimension=m...

4 years ago | 0

| accepted

Question


How to avoid error when whether the function has returns is unknown?
function Output = PairArrayArrayfun(Function,Array1,Array2,ArrayDimension,UniformOutput) CatDimension=max(ndims(Array1),ndims(A...

4 years ago | 3 answers | 0

3

answers

Question


How to gracefully generate an all-one cell array?
An all-one array can be gracefully generated by ones(...) But what if I want an all-one cell array? function Output=OnesInCell...

4 years ago | 1 answer | 1

1

answer

Question


Why can't I start my local cluster?
Win10 1903. Any possible reasons?

4 years ago | 0 answers | 0

0

answers

Question


Is this for-loop vectorizable?
b=1; for a=2:length(ToneLines) if ToneLines(a)-ToneLines(b)>13000 b=a; else ToneLines(a)=0; end end ToneLines=Ton...

4 years ago | 1 answer | 0

1

answer