Beantwortet
getframe dual monitor
Hi, you can use it but you have to move the figure on the first screen. This can be done programmatically. MathWorks provides a...

fast 15 Jahre vor | 1

Beantwortet
deploying Matlab C++ library to 64 bit
Sounds like a missing redistributable package for Visual Studio 2010. Please install it on the target machine: <http://www.micr...

fast 15 Jahre vor | 0

Beantwortet
when i am running a gui program a window is coming ask me for change the directry
Hi, do you start the GUI out of the ML editor where the M file is open and your current folder is different from the folder w...

fast 15 Jahre vor | 0

| akzeptiert

Beantwortet
deploying Matlab C++ library to 64 bit
Hi, is the target OS of the same type like the OS where the DLL is compiled on? What error do you get?

fast 15 Jahre vor | 0

Beantwortet
Parallel Programming Doubt
Hi, Parallel Computing Toolbox allows you to run the computation locally only. If you want to do your calaculation on a diffe...

fast 15 Jahre vor | 1

Beantwortet
Segmentation violation while returning from Matlab function
Hi, seems like you are running your application out of a folder where you dont have read permissions. Please try to run your ...

fast 15 Jahre vor | 0

Beantwortet
Setting static text box's string
Hi, I agree with Paulo. Maybe run a dbstop if error and than start your code. You will get into the debug mode when t...

fast 15 Jahre vor | 0

| akzeptiert

Beantwortet
How to convert a matlab code to C-code ?
Hi, Yes, download and maybe buy it if you dont have it. But not all functions are supported for code generation. for a list s...

fast 15 Jahre vor | 0

Beantwortet
imcomplement for binary image doesn't replace 1.000 with 0.000
Hi, are you sure that your value is really 1.0? Because: imcomplement(.9999999999999994) ans = 5.5511e-016 ...

fast 15 Jahre vor | 2

Beantwortet
Unable to execute sim command for simulation from C# .Net
Hi, I created an example and uploaded the C# project here <https://rapidshare.com/files/2490591795/Call_ML_from_C_sharp.zip> ...

fast 15 Jahre vor | 0

Beantwortet
i want to create an error msg in matlab gui
Hi, You have to use the exist function. If the Excel file is not on the MATLAB path you will need the absolut path to it. And...

fast 15 Jahre vor | 0

| akzeptiert

Beantwortet
i want to create a error msage.
Hi, maybe something like this? msgbox('File not found','Error','Error')

fast 15 Jahre vor | 0

Beantwortet
How do I display a MATLAB error from a Simulink Model?
Hi, it exists a block called MATLAB Function. Simply take this block and take the voltage as input signal. In this Block you ...

fast 15 Jahre vor | 2

Beantwortet
Unable to execute sim command for simulation from C# .Net
Hi, You can't compile Simulink: <http://www.mathworks.com/products/ineligible_programs/>

fast 15 Jahre vor | 0

Beantwortet
equal distances
Hi, I hope I get it right. I would do something like this: clc %some points x = rand(100,1); y = rand(100,1); ...

fast 15 Jahre vor | 0

Beantwortet
Passing variables to other gui
Hi, there is a nice Blog available: <http://blogs.mathworks.com/videos/category/gui-or-guide/> Which contains the follo...

fast 15 Jahre vor | 0

Beantwortet
Sparse Support for MATLAB Coder
Hi, I think it does and it is disabled by default: <http://www.mathworks.com/help/releases/R2011a/toolbox/coder/ref/coder.prim...

fast 15 Jahre vor | 0

Beantwortet
Converting a matlab function to java
Hi, What do you mean with converting to Java? Are you talking about MATLAB Builder JA? The error looks like a ML error and it...

fast 15 Jahre vor | 0

| akzeptiert

Beantwortet
get rid of e notation
Hi, have a look at the format function: <http://www.mathworks.com/help/releases/R2011a/techdoc/ref/format.html> So this...

fast 15 Jahre vor | 0

Beantwortet
question for using MATLAB Compiler (mc) for Undefined function
Hi, the Simulink Products are not made for compiling: <http://www.mathworks.com/products/ineligible_programs/> Maybe co...

fast 15 Jahre vor | 0

Beantwortet
MATLAB Compiler Licence
Hi, The MCR comes with the MATLAB Compiler. You dont have to pay extra costs when using/deplyoing the MCR to your endusers. Y...

fast 15 Jahre vor | 2

| akzeptiert

Beantwortet
Building portable MEX files
Hi, please contact MW Technical Support for this. It seems that ML Coder is not made for deplyoing your mex functions to othe...

fast 15 Jahre vor | 0

Beantwortet
Building portable MEX files
Hi, you are getting this error because you compiled with a Visual Studio compiler and during compiling you will link against ce...

fast 15 Jahre vor | 0

| akzeptiert

Beantwortet
Writing mutiple data files in a single text file
Hi, I would read in all the files, e.g fid = fopen('w48_0.txt','r'); C = textscan(fid, '%f %f','Headerlines',1) C{1} is ...

fast 15 Jahre vor | 1

Beantwortet
How to Initailize MWStructArray
Hi, #include "mclcppclass.h" const char* fields[] = {"a", "b"}; mwArray my_struct(1, 5, 2, fields); See doc for more: <http...

fast 15 Jahre vor | 1

| akzeptiert

Beantwortet
2010a and later parsing of int64() and uint64() ?
Hi, tested with R2011a 64bit on Win7: >> int64(18446744073709551600) ans = 9223372036854775807 ...

fast 15 Jahre vor | 2

Beantwortet
retrieve coefficients from multivariable symbolic equation.
Hi, I think the coeffs function from the Symbolic Math Toolbox could help here: <http://www.mathworks.com/help/releases/R2...

fast 15 Jahre vor | 1

| akzeptiert

Beantwortet
Loading a DLL in MATLAB through JAVA
Hi, When compiling code which uses loadlibrary you have to take care of some things first: If you need to distribute your ...

fast 15 Jahre vor | 2

| akzeptiert

Beantwortet
LIBSVM
Hi, the LCC is a C compiler but like the file extension suggest you are trying to compile C++ code. Please install a supporte...

fast 15 Jahre vor | 1

Beantwortet
calling a dll
Hi, this be because calllib is written with three l instead of two like you did.

fast 15 Jahre vor | 1

| akzeptiert

Mehr laden