Community Profile

photo

Friedrich

MathWorks

Last seen: 13 days 前 自 2011 起处于活动状态

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.

统计数据

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

查看徽章

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

4 years 前 | 0

| 已接受

已回答
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 前 | 24

已回答
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 前 | 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...

7 years 前 | 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 ...

7 years 前 | 0

| 已接受

已回答
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 前 | 1

| 已接受

已回答
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 前 | 2

| 已接受

已回答
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 前 | 2

| 已接受

已回答
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 前 | 1

| 已接受

已回答
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...

8 years 前 | 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.

8 years 前 | 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 ;)

8 years 前 | 1

| 已接受

已回答
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 前 | 0

| 已接受

已回答
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 前 | 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).

9 years 前 | 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.

9 years 前 | 0

| 已接受

已回答
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 前 | 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...

9 years 前 | 0

| 已接受

已回答
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 前 | 0

| 已接受

已回答
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 前 | 1

| 已接受

已回答
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 前 | 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(...

9 years 前 | 0

| 已接受

已回答
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 前 | 0

| 已接受

已回答
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 前 | 1

| 已接受

已回答
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 前 | 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...

9 years 前 | 0

| 已接受

已回答
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 前 | 0

| 已接受

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

9 years 前 | 3

| 已接受

已回答
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 前 | 0

| 已接受

已回答
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 前 | 2

| 已接受

加载更多