![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/15973573_1601956420710.png)
Programming Languages:
C++
Spoken Languages:
Chinese
Pronouns:
No pronouns - Use my name only
C++
Spoken Languages:
Chinese
Pronouns:
No pronouns - Use my name only
統計
All
Feeds
回答済み
C++ compiler errors TFlite
You're encountering a very similar issue as another question. Refer to my answer there and see if it helps.
C++ compiler errors TFlite
You're encountering a very similar issue as another question. Refer to my answer there and see if it helps.
20日 前 | 0
| 採用済み
回答済み
Error generating MEX PIL due to missing header file for deployment of TFLite model to Raspberry Pi
Environment variables are used to load dynamic libraries at runtime. Your problem now is that the header file is missing at comp...
Error generating MEX PIL due to missing header file for deployment of TFLite model to Raspberry Pi
Environment variables are used to load dynamic libraries at runtime. Your problem now is that the header file is missing at comp...
20日 前 | 1
| 採用済み
回答済み
Can't solve linker error in building S-Function Builder
What is <onnxruntime_cxx_api.h> and is it provided by MATLAB or a third-party library? If it's a third-party library, the link ...
Can't solve linker error in building S-Function Builder
What is <onnxruntime_cxx_api.h> and is it provided by MATLAB or a third-party library? If it's a third-party library, the link ...
20日 前 | 0
回答済み
Subdivide a figure window into two rows and one column?
According to documentation, subplot is not recommended and you'd better use tiledlayout for new projects: tiledlayout(2,1); ne...
Subdivide a figure window into two rows and one column?
According to documentation, subplot is not recommended and you'd better use tiledlayout for new projects: tiledlayout(2,1); ne...
21日 前 | 0
回答済み
Error when using exportgraphics function to save large vector graphics with transparency
我使用了你提供的文件,测试了你的第一行代码,但是在更新的MATLAB版本和操作系统环境上: ---------------------------------------------------------------------------------...
Error when using exportgraphics function to save large vector graphics with transparency
我使用了你提供的文件,测试了你的第一行代码,但是在更新的MATLAB版本和操作系统环境上: ---------------------------------------------------------------------------------...
21日 前 | 0
回答済み
Matlab no muestra el gráfico de mi codigo
Su código no parece tener nada malo y lo estoy ejecutando bien en mi terminal. Es posible que deba considerar la posibilidad de ...
Matlab no muestra el gráfico de mi codigo
Su código no parece tener nada malo y lo estoy ejecutando bien en mi terminal. Es posible que deba considerar la posibilidad de ...
21日 前 | 0
回答済み
i have a matlab code with 3 for loops, in last for loop , there is threshold based penalization. i want trace some variables in that code and compare with plot
If I understand you correctly, you might want to try animatedline. Use this method to keep adding new points to the line as you ...
i have a matlab code with 3 for loops, in last for loop , there is threshold based penalization. i want trace some variables in that code and compare with plot
If I understand you correctly, you might want to try animatedline. Use this method to keep adding new points to the line as you ...
22日 前 | 0
回答済み
How to connect broken lines, but no enlarge line width?
function Image=FixBroken(Image,GapSize) try Image=imread(Image); catch ME if ME.identifier~="MATLAB:imagesci:imread:badIma...
How to connect broken lines, but no enlarge line width?
function Image=FixBroken(Image,GapSize) try Image=imread(Image); catch ME if ME.identifier~="MATLAB:imagesci:imread:badIma...
22日 前 | 0
| 採用済み
回答済み
Error using build after clibgen.generateLibraryDefinition runs as expected.
Since you didn't provide the source code, I can't reproduce your issue. But I would suggest that you compile a C++ MEX file func...
Error using build after clibgen.generateLibraryDefinition runs as expected.
Since you didn't provide the source code, I can't reproduce your issue. But I would suggest that you compile a C++ MEX file func...
22日 前 | 0
| 採用済み
回答済み
how to set the browser of webread function?
一般来说是标头问题。你可以打开Chrome的开发人员工具看下请求的标头是什么,然后用weboptions设置同样的标头。 Generally it's a header issue. You can open Chrome's developer too...
how to set the browser of webread function?
一般来说是标头问题。你可以打开Chrome的开发人员工具看下请求的标头是什么,然后用weboptions设置同样的标头。 Generally it's a header issue. You can open Chrome's developer too...
22日 前 | 0
回答済み
Matrix function -- problem with the defi
function Y=F(Y,f) y3=Y(3,:); Y(2:3,:)=[y3;f(Y(1,:),Y(2,:),y3)]; Y(1,:)=1; end
Matrix function -- problem with the defi
function Y=F(Y,f) y3=Y(3,:); Y(2:3,:)=[y3;f(Y(1,:),Y(2,:),y3)]; Y(1,:)=1; end
23日 前 | 0
回答済み
Ideas on generalizing the syntax used for constructing complex variables
The imaginary units i and j are keywords hard-coded into the MATLAB interpreter. You can't add new custom keywords. Conceptually...
Ideas on generalizing the syntax used for constructing complex variables
The imaginary units i and j are keywords hard-coded into the MATLAB interpreter. You can't add new custom keywords. Conceptually...
25日 前 | 0
回答済み
Detecting a serial port valid after disconnect/reconnect
You may want to set the ErrorOccurredFcn property of serialport: S=serialport('COM4',9600); S.ErrorOccurredFcn=@(varargin)disp...
Detecting a serial port valid after disconnect/reconnect
You may want to set the ErrorOccurredFcn property of serialport: S=serialport('COM4',9600); S.ErrorOccurredFcn=@(varargin)disp...
25日 前 | 0
| 採用済み
回答済み
Calculation with three dimensional matrices
If your formula expresses what @Torsten understands, I'll code like this: function Y=cGW_Y(c,G,W) Y=permute(pagemtimes(permute...
Calculation with three dimensional matrices
If your formula expresses what @Torsten understands, I'll code like this: function Y=cGW_Y(c,G,W) Y=permute(pagemtimes(permute...
26日 前 | 0
| 採用済み
回答済み
Contains in cells extracted from a structure runs into char class problems
I suggest you upload some .mat sample data. There are many ambiguities in your description. The weirdest behavior in your code ...
Contains in cells extracted from a structure runs into char class problems
I suggest you upload some .mat sample data. There are many ambiguities in your description. The weirdest behavior in your code ...
26日 前 | 0
回答済み
How to acces lib.pointer in C++ Mex Files
lib.pointer has a Value property. Pass that to your MEX function.
How to acces lib.pointer in C++ Mex Files
lib.pointer has a Value property. Pass that to your MEX function.
26日 前 | 0
回答済み
Stop Windows MATLAB adjusting figure's position and size
你试过print吗?我一般用print出图,基本没有遇到过尺寸限制问题。 print(load('fig.mat').fig,'fig.pdf','-dpdf');
Stop Windows MATLAB adjusting figure's position and size
你试过print吗?我一般用print出图,基本没有遇到过尺寸限制问题。 print(load('fig.mat').fig,'fig.pdf','-dpdf');
26日 前 | 0
回答済み
File Exchange: how to "Link to an External Website"
If the feature has been removed, it shouldn't appear in the documentation. If the claimed feature of the document does not exist...
File Exchange: how to "Link to an External Website"
If the feature has been removed, it shouldn't appear in the documentation. If the claimed feature of the document does not exist...
26日 前 | 0
| 採用済み
回答済み
Private/protected properties not suggested by methods in class folder
R2024b does not reproduce your issue - may have been fixed.
Private/protected properties not suggested by methods in class folder
R2024b does not reproduce your issue - may have been fixed.
約2ヶ月 前 | 0
質問
Can't publish GitHub Release to File Exchange after changing GitHub username
After changing my GitHub username (From Silver-Fang to Ebola-Chan-bot, as shown in the screenshot), I can't publish my GitHub ...
2ヶ月 前 | 1 件の回答 | 0
1
回答回答済み
How to find all specified files in a specified path in Matlab?matlab 如何查找指定路径下的所有指定文件
如果你只需要文件名,可以用ls ls *.mdl ls *.slx
How to find all specified files in a specified path in Matlab?matlab 如何查找指定路径下的所有指定文件
如果你只需要文件名,可以用ls ls *.mdl ls *.slx
2ヶ月 前 | 0
回答済み
How do implement abstract properties without automatically instantiating them?
According to the documentation, all properties of a class must have default values. If you don't specify a default value explici...
How do implement abstract properties without automatically instantiating them?
According to the documentation, all properties of a class must have default values. If you don't specify a default value explici...
2ヶ月 前 | 1
回答済み
sheetnames() leaves Excel file locked?
I can't reproduce your bug in R2024b, even in a debug session. Maybe you should try to upgrade your MATLAB version.
sheetnames() leaves Excel file locked?
I can't reproduce your bug in R2024b, even in a debug session. Maybe you should try to upgrade your MATLAB version.
3ヶ月 前 | 0
回答済み
MATLAB crashes in one computer but not in the other running the same code
Can you describe the details of your crash? Is it just your code crashing or is the entire MATLAB process crashing? Is the opera...
MATLAB crashes in one computer but not in the other running the same code
Can you describe the details of your crash? Is it just your code crashing or is the entire MATLAB process crashing? Is the opera...
3ヶ月 前 | 0
回答済み
MATLAB欧式距离的代码优化。
[dis(:,1),dis(:,2)]=find(tril(true(width(alldesc)),-1)); dis(:,3)=pdist(alldesc.');
MATLAB欧式距离的代码优化。
[dis(:,1),dis(:,2)]=find(tril(true(width(alldesc)),-1)); dis(:,3)=pdist(alldesc.');
3ヶ月 前 | 0
回答済み
已知一组数据x,大概服从拉普拉斯分布,如何才能估计出对应的参数呢?。
拉普拉斯分布只有一个位置和一个尺度参数。位置参数就是中位数,尺度参数就是每个点到中位数的平均距离。 function [mu, b] = estimate_laplace_params(data) % 估计位置参数 μ(中位数) mu...
已知一组数据x,大概服从拉普拉斯分布,如何才能估计出对应的参数呢?。
拉普拉斯分布只有一个位置和一个尺度参数。位置参数就是中位数,尺度参数就是每个点到中位数的平均距离。 function [mu, b] = estimate_laplace_params(data) % 估计位置参数 μ(中位数) mu...
3ヶ月 前 | 0