Answered
simulink crash
Hi, does your CPU support SSE2? Since MATLAB likes to crash/vanish if the CPU dont have SSE2 support: <http://www.mathwork...

14 years ago | 0

Answered
problem to compile a matlab project into java project
Hi, in such a case I would recommend to start with an example: <http://www.mathworks.com/help/releases/R2011a/toolbox/javabuild...

14 years ago | 0

Answered
Four indexing matrix
Hi, I am not sure what you mean with 4digit indexing. Do you want a 4d matrix? >> a = zeros(3,3,3,3); >> a(1,2,1,3) ...

14 years ago | 0

Answered
create a white circle or sphere inside a black box
Hi, can this help? function out = my_circ( A, midpoint, radius ) out = A; [ m n] = size(A); for i=1...

14 years ago | 1

Answered
Difference between Simulink Coder, Embedded Coder and Matlab Coder
Hi, I think the product discription on the hompage explains it very good: <http://www.mathworks.com/products/matlab-coder/...

14 years ago | 2

Answered
how can I biult alphanumeric variable in for loop ???????????
Hi, you dont need a loop. You can do it this way: A1 = rand(20); A2 = rand(20); result = [A1(:)';A2(:)']; Or C...

14 years ago | 0

Answered
How to create a binary matrix
Hi, this is not possible in MATLAB and in other languages too like C or C++. In modern computer architectures, a byte is the ...

14 years ago | 0

Answered
Using a java class from within Matlab
Hi, I would suggest starting here: <http://www.mathworks.com/help/releases/R2011a/techdoc/matlab_external/f44062.html> ...

14 years ago | 0

Answered
Function producing two figure
Hi, do the following figure subplot(1,2,1) %plot subplot(1,2,2) %plot figure subplot(2,2,1) %plot subplot...

14 years ago | 2

| accepted

Answered
How do I specify the compression level to gzip?
Hi, sry no you can't. At least without modifying the MATLAB Java code.

14 years ago | 0

Answered
unresolved external symbol link error with R2009b and VC++2008 express sp1
Hi, without some more details it hard to tell whats wrong. Maybe the Microsoft doc can help: <http://msdn.microsoft.com/en...

14 years ago | 0

| accepted

Answered
exporting complex data
Hi, try this: a = rand(10) + rand(10)*i; dlmwrite('text.txt',a) Or if you want a whitespace instead of a comma do dl...

14 years ago | 1

| accepted

Answered
Calling com component from Visual studio.net
Hi, what are you trying exactly? As far as I get it you are using MATLAB Builder NE to create a COM DLL (not excel add in!) w...

14 years ago | 0

Answered
Calling com component from Visual studio.net
Hi, is it related to this: <http://www.mathworks.com/support/solutions/en/data/1-19P4E/index.html?product=EB&solution=1-19...

14 years ago | 0

Answered
how to determine if another instance of matlab is running ?
Hi, on windows you can do: [out, res] = dos('tasklist') This will give you a list of all running programs. Search in that l...

14 years ago | 0

| accepted

Answered
function problem
Hi, when I do the following it works perfectly: a = rand(10) > 0.5; b = rand(10); removehole(a,b,1) Do you ha...

14 years ago | 0

Answered
function error while using sb2ind function
Hi, it seems like a value in CentroidTerm(:,1) is bigger than m or a value in CentroidTerm(:,2) is bigger than n.

14 years ago | 0

Answered
matlab coder 2.0
Hi, MATLAB Coder is the result of some transissions. It was former known as Real-Time Workshop: <http://www.mathworks.com/...

14 years ago | 0

| accepted

Answered
How to handle matrices in java
Hi, the BUILDER JA comes with a javabuilder.jar (located in C:\Program Files\MATLAB\R2011a\toolbox\javabuilder\jar) which provi...

14 years ago | 1

| accepted

Answered
fclose error "Not enough input arguments"
Hi, e.g. this call fprintf (fileout, 'nsub\tblock\ttrial\tlevel\tgamma\trispAC\tthreshold\n'); is not correct since fprin...

14 years ago | 0

Answered
Solving Integral for an Unknown Interval
Hi, so doing something like this: function out = test_func( c ) out = quad(@lhs,-.25,.25) ./10 - quad(@rhs,-c,c)....

14 years ago | 0

| accepted

Answered
looking for a matlb function that convert multi-dimensional matrix into one dimentional vector
Hi, B = reshape(A',1,numel(A)) or when columnbased you can do B = A(:);

14 years ago | 1

| accepted

Answered
Solving Integral for an Unknown Interval
Hi, no. You can't get a symbolic solution without the symbolic math toolbox. When you know c you can use the quad function: ...

14 years ago | 0

Answered
warnings and erros in matlab
Hi, I think the diary command can help you here: <http://www.mathworks.com/help/releases/R2011a/techdoc/ref/diary.html>

14 years ago | 0

Answered
mexFuncion.obj : error LNK2019: unresolved external symbol _mxGetPr referenced in function _mexFunction
Hi, you have to set some more. I created a MSVC timestwo.c example and uploaded it here: <https://rapidshare.com/files/179...

14 years ago | 0

Answered
loading multiple excel files in a loop
Hi, first of all doing a xlsread in a loop is a bad idea since you always open and close the EXCEL COM Server. You have to do i...

14 years ago | 2

| accepted

Answered
Compiler - Can't start Matlab engine
Hi, try to register MATLAB as COM server. Simply run this in MATLAB: regmatlabserver And make sure the bin\win32 or \win64 ...

14 years ago | 0

| accepted

Answered
Builder NE 2010 a problem with neural network toolbox
Hi, I think I have seen this before. When compiling the class constructor is not compiled and during runtime the class in unkno...

14 years ago | 0

Answered
multiple instances of function call in paralle
Hi, Iam not sure if this will speed up things but I would try the following %generate all input args all_args ={}; ...

14 years ago | 0

Answered
MATLAB cannot find super-class 'matlab.system.SFunCore' when using Computer Vision System toolbox
Hi, please never mix up files from two different MATLAB releases. Please reinstall the Trial Toolbox again. If it still not w...

14 years ago | 0

| accepted

Load more