Community Profile

photo

Friedrich

MathWorks

Last seen: 1 day ago Active since 2011

Please do not write me a PM. Post questions or follow up question on MATLAB Answers. I will not answer a PM.

Statistics

All
  • Thankful Level 3
  • First Review
  • 24 Month Streak
  • Guiding Light
  • Revival Level 1
  • Knowledgeable Level 5
  • First Answer
  • Solver

View badges

Content Feed

View by

Answered
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...

4 years ago | 0

| accepted

Answered
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...

4 years ago | 24

Answered
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

5 years ago | 1

Answered
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...

7 years ago | 0

Answered
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 ...

7 years ago | 0

| accepted

Answered
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...

7 years ago | 1

| accepted

Answered
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...

7 years ago | 2

| accepted

Answered
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...

7 years ago | 2

| accepted

Answered
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...

7 years ago | 1

| accepted

Answered
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...

7 years ago | 0

Answered
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.

7 years ago | 0

Answered
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 ;)

7 years ago | 1

| accepted

Answered
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...

8 years ago | 0

| accepted

Answered
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 =...

9 years ago | 1

Answered
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).

9 years ago | 0

Answered
Error in using surf
Hi, it's a known bug. Please apply that <http://www.mathworks.de/support/bugreports/961964 patch> and try again.

9 years ago | 0

| accepted

Answered
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...

9 years ago | 0

Answered
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...

9 years ago | 0

| accepted

Answered
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.

9 years ago | 0

| accepted

Answered
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 = ...

9 years ago | 1

| accepted

Answered
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...

9 years ago | 0

Answered
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(...

9 years ago | 0

| accepted

Answered
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...

9 years ago | 0

| accepted

Answered
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...

9 years ago | 1

| accepted

Answered
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 ...

9 years ago | 1

Answered
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...

9 years ago | 0

| accepted

Answered
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...

9 years ago | 0

| accepted

Answered
Is it possible to get current of mouse position out of GUI scope?
Hi, try >> get(0,'PointerLocation')

9 years ago | 3

| accepted

Answered
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...

9 years ago | 0

| accepted

Answered
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...

9 years ago | 2

| accepted

Load more