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

14 years ago | 1

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

14 years ago | 0

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

14 years ago | 0

| accepted

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

14 years ago | 0

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

14 years ago | 1

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

14 years ago | 0

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

14 years ago | 0

| accepted

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

14 years ago | 0

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

14 years ago | 2

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

14 years ago | 0

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

14 years ago | 0

| accepted

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

14 years ago | 0

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

14 years ago | 2

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

14 years ago | 0

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

14 years ago | 0

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

14 years ago | 0

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

14 years ago | 0

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

14 years ago | 0

| accepted

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

14 years ago | 0

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

14 years ago | 0

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

14 years ago | 2

| accepted

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

14 years ago | 0

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

14 years ago | 0

| accepted

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

14 years ago | 1

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

14 years ago | 1

| accepted

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

14 years ago | 2

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

14 years ago | 1

| accepted

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

14 years ago | 2

| accepted

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

14 years ago | 1

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

14 years ago | 1

| accepted

Load more