Friedrich
MathWorks
Followers: 0 Following: 0
Please do not write me a PM. Post questions or follow up question on MATLAB Answers. I will not answer a PM.
Statistiques
RANG
71
of 295 448
RÉPUTATION
2 373
CONTRIBUTIONS
1 Question
637 Réponses
ACCEPTATION DE VOS RÉPONSES
0.0%
VOTES REÇUS
570
RANG
of 20 227
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
How to create a standalone application to control a arduino?
This is supported starting with R2019b. For more information see https://www.mathworks.com/help/releases/R2019b/supportpkg/ardu...
environ 5 ans il y a | 0
| A accepté
Appdesigner window ends up in background after uigetfile
For MATLAB R2018a and newer you can use the figure command to focus your app again, uigetfile; % Could be other dialogs here d...
environ 5 ans il y a | 26
How to see my code after hitting hide code on th view tab (LIVE EDITOR)
Have you checked the bugreports page? Seems like a known issue: https://www.mathworks.com/support/bugreports/1981461
plus de 5 ans il y a | 1
Compile a .EXE into program and launch?
Hi, if you want to launch an external application from your MATLAB code you can use <http://www.mathworks.com/help/releases/R...
presque 8 ans il y a | 0
M-File not accessible in Excel Add-in
Hi, do you have a startup.m file which set up paths, CDs into something? Something messed up the search path of the compiled ...
presque 8 ans il y a | 0
| A accepté
How can I build a shared dll that contains neural network functions?
Hi, you can't. See <https://www.mathworks.com/products/compiler/supported/compiler_support.html here>. MATLAB Compiler suppor...
presque 8 ans il y a | 1
| A accepté
From MATLAB to ASP.NET Web Forms Application/Web deployment - How to solve 'System.TypeInitializationException' error?
Hi, there are two pieces to the puzzle here. First the bittedness of the DLL you built and second the bittedness of the webse...
presque 8 ans il y a | 2
| A accepté
Could I use Matlab Compiler SDK as trial to deploy stand alone exe for my Matlab script in trial mode?
No, that will not work. Trial toolboxes will not get compiled into the application/component when using a non-trial matlab compi...
environ 8 ans il y a | 2
| A accepté
Why seems the perspective of a 3D plot distorted?
Hi, I think the reason you are seeing the scene shifted to the right and upwards is because the axes is not positioned in the...
plus de 8 ans il y a | 1
| A accepté
Selecting options for saving array
Hi, how about cutting out the data you want to save? You have 5 radio buttons and you can figure out which one is checked. So...
plus de 8 ans il y a | 0
while running an old script I recieved the following note: Error occurred loading: C:\Users\user\AppData\Local\MathWorks\MATLAB\R2014b\toolbox_cache-8.4.0-985078138-win64.xml Cache file ignored.
Hi, I would say regenerating the toolbox cache should help. Just execute: >>rehash toolboxcache to do so.
plus de 8 ans il y a | 0
A way to work around MATLAB's inability of put a local function into M-script
Hi, how about giving 16b a shot? Just do it ;)
plus de 8 ans il y a | 1
| A accepté
can't use KummerU function
Hi, kummerU is a Symbolic Math Toolbox function, so you can't simply call: >> kummerU(1/3, 2.0, -50) Undefined functi...
presque 9 ans il y a | 0
| A accepté
How can I run Matlab completely quiet?
Hi all. It is possible using WMIC on Windows, e.g. through VBS. Short and easy: strComputer = "." Set objWMIService =...
environ 10 ans il y a | 1
how to change the matlab logo at the window top left?
Hi, yes that is possible by using some JAVA code but violates the SLA (software license agreement).
environ 10 ans il y a | 0
Error in using surf
Hi, it's a known bug. Please apply that <http://www.mathworks.de/support/bugreports/961964 patch> and try again.
environ 10 ans il y a | 0
| A accepté
Is it possible to use an NI USB-6002 using the Data Acquisition Toolbox only (error NI Error -200452)?
Hi, The USB 6002 is not officially supported by Data Acquisition Toolbox. For a list of supported devices see <http://www.mat...
environ 10 ans il y a | 0
How can I obtain MCR for Matlab R2011a ?
Hi, install MATLAB + MATLAB Compiler to get the MCR installer or contact the author of the component you got because he has a...
environ 10 ans il y a | 0
| A accepté
Compiler problem: create standalone application for Windows on a mac
Hi, this is not possible. If you want to get an EXE with MATLAB Compiler you would need to compile on a Windows machine.
environ 10 ans il y a | 0
| A accepté
Problem with simplify(x^(1/log(x)).
Hi, have you tried increasing the number of simplification steps? >> simplify(x^(1/log(x)),'steps',10) ans = ...
environ 10 ans il y a | 1
| A accepté
How can I create a deployable standalone executable of my simulink simulation?
Have you tried using the forum search? There are plenty of posts, e.g. <http://www.mathworks.com/matlabcentral/answers/97161-how...
environ 10 ans il y a | 0
How can I pass my C# function in Matlab functions input parameters?
Hi, yes that can be done and there is an example in the documentation which does exactly that. See here >> web(fullfile(...
environ 10 ans il y a | 0
| A accepté
how to connect dataset in matlab?
Hi, this indicates a bittedness missmatch between MATLAB and your ODBC driver. I guess you use a 64bit MATLAB but have a 32bi...
environ 10 ans il y a | 0
| A accepté
Maximum number of workers in a parallel loop (local cluster) with Matlab R2014a?
Hi, the rule of thumb is to use one worker per pyhsical core. This is also stated <http://www.mathworks.de/products/availabil...
environ 10 ans il y a | 1
| A accepté
How do I pass variables from a MATLAB script to C++?
Hi, Why don't you use JAVA for this? It is way easier to move the mouse with JAVA than with platform dependent c++ code. See ...
environ 10 ans il y a | 1
ismember legacy flag with older Matlab
Hi, an IF clause is the only way here. You could write your own small helper function which calls ismember and deals with...
environ 10 ans il y a | 0
| A accepté
missing functionality when using imfinfo instead of exifread
Hi, what MATLAB version are you using? Normally the returned structure of iminfo should have a field called DigitalCamera whi...
plus de 10 ans il y a | 0
| A accepté
Is it possible to get current of mouse position out of GUI scope?
Hi, try >> get(0,'PointerLocation')
plus de 10 ans il y a | 3
| A accepté
Passing int to mex file
Hi, have you tried int a = (int)*mxGetPr(prhs[0]); This will work for double values only. In order to make this wo...
plus de 10 ans il y a | 0
| A accepté
convert (1.0e+04 *x) to (normal)
Hi, have a look at the <http://www.mathworks.com/help/matlab/ref/format.html format> function. Maybe "format shortG" does wha...
plus de 10 ans il y a | 2
| A accepté