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

casi 15 años hace | 0

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

casi 15 años hace | 0

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

casi 15 años hace | 0

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

casi 15 años hace | 1

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

casi 15 años hace | 2

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

casi 15 años hace | 0

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

casi 15 años hace | 0

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

casi 15 años hace | 0

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

casi 15 años hace | 2

| aceptada

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

casi 15 años hace | 0

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

casi 15 años hace | 0

| aceptada

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

casi 15 años hace | 1

| aceptada

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

casi 15 años hace | 0

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

casi 15 años hace | 0

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

casi 15 años hace | 0

| aceptada

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

casi 15 años hace | 0

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

casi 15 años hace | 0

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

casi 15 años hace | 0

| aceptada

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

casi 15 años hace | 1

| aceptada

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

casi 15 años hace | 0

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

casi 15 años hace | 0

| aceptada

Respondida
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(:);

casi 15 años hace | 1

| aceptada

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

casi 15 años hace | 0

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

casi 15 años hace | 0

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

casi 15 años hace | 0

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

casi 15 años hace | 2

| aceptada

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

casi 15 años hace | 0

| aceptada

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

casi 15 años hace | 0

Respondida
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 ={}; ...

casi 15 años hace | 0

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

casi 15 años hace | 0

| aceptada

Cargar más