Respondida
How to solve a system of linear equations ?
Hi, You have 3 degrees of freedom and 2 eqations, so there is NO unique solution. So doing some basic math gives: z fre...

alrededor de 13 años hace | 0

| aceptada

Respondida
How to display an image from output value?
Hi, try num2str: A = 37 imshow([num2str(A),'.jpg'])

alrededor de 13 años hace | 0

| aceptada

Respondida
What does this error mean: CGIR assertion 'index>=0 && index<fSize' failed in 'util_prim/cg_assert.cpp:28'
Hi, related to: <http://www.mathworks.com/support/bugreports/757615> STD is a reserved function name, like gamma.

alrededor de 13 años hace | 1

Respondida
why i get error during deployment process?
Hi, I knew it^^ The COMSPEC env. var is not setup correctly for use with MATLAB. This variable should point to the command in...

alrededor de 13 años hace | 1

Respondida
For stand-alone exe, how do I include a folder of files and know how to access them.
Hi, everything you add to your project will keep the same folder hierachy. So lets say you have a folder called myfolder and ...

alrededor de 13 años hace | 1

| aceptada

Respondida
How I insert a breakpoint in a Matlab Library?
Hi, thats not possible. The only product/Environment where this works is MATLAB Buidler EX. What I normally do is the followi...

alrededor de 13 años hace | 0

Respondida
Running a python script in matlab
Hi, when modifying your script to: import sys def squared(a,omtrek): b = (omtrek/2)-a return b ...

alrededor de 13 años hace | 0

| aceptada

Respondida
how to load dll file ? "The specified module could not be found." i have refered lot
Hi Ikram, the main raison why loadlibrary doesn't work is that your DLL is a .NET DLL. So please use NET.addAssembly. Once yo...

alrededor de 13 años hace | 2

| aceptada

Respondida
Problem Plot() function in java!
Hi, I guess are test application is pretty short, so I guess the MCR is closed together with your application. In order to pr...

alrededor de 13 años hace | 0

Respondida
How can I pass data from one gui to another?
Hi, have a look here: <http://blogs.mathworks.com/videos/category/gui-or-guide/> Which also explains how to pass data b...

más de 13 años hace | 0

Resuelto


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

más de 13 años hace

Respondida
if i have .c file and i want to run it in matlab how it will convert in mex.......plz tell me in some detail by taking a small example
Hi, I would say start with the doc: <http://www.mathworks.com/help/matlab/creating-c-c-and-fortran-programs-to-be-callable...

más de 13 años hace | 0

Respondida
Dynamic Link between MATLAB and EXCEL
Hi, triggering some MATLAB calaculation when a Cell is changed in an Excel Worksheet is doable with some VBA programming know...

más de 13 años hace | 0

| aceptada

Respondida
Convert Fuzzy model .fis file to Java package using Matlab Bulider JA
Hi, so the error is "Error using readfis (line 52) No such file or directory" which means that this call fismat =readfis('myf...

más de 13 años hace | 1

Respondida
Please HELP!! Am I nuts?
Hi, this behavior is correct. In a function the output arguments aren't concatinated. They are returned as several outputs. ...

más de 13 años hace | 1

Respondida
About deploy a project on Java to be included on a website on PHP5
Hi, you won't be able to get the MATLAB GUI on the webserver/website. See that solution for the way to go: <http://www.mat...

más de 13 años hace | 0

| aceptada

Respondida
2012b Editor missing features "Change Case"?
Hi, it's there, or better it needs to be enabled again. Go to the ML preferences => Keyboard => Shortcuts. There you will fin...

más de 13 años hace | 5

| aceptada

Respondida
How to run multiple instances of MCR
Hi, no that is not possible. The MCR is process "bound" which means only MCR per process is allowed and in addition the MCR m...

más de 13 años hace | 0

| aceptada

Respondida
How to use 'quad' function in Simulink
Hi, this integral can be calaculted by hand pretty easily. So why not calaculate it by hand and putting the resulting formula...

más de 13 años hace | 0

| aceptada

Respondida
Problem in using engOpenSingleUse()
Hi, I used the following code to open ML four times but it works fine: #include <stdlib.h> #include <stdio.h> #inc...

más de 13 años hace | 0

Respondida
Problem with large arrays (c++ & variable editor) in R2012a win64
Hi, this is expected behavior. matGetVariableInfo loads the Array header information only, so the actual data is not loaded. ...

más de 13 años hace | 1

| aceptada

Respondida
Please clear my doubt in memory calculation of cell Array
Hi, your calculation seems fine. You don't get half because of the cell header ("overhead") information which always needs 11...

más de 13 años hace | 0

| aceptada

Respondida
getting error in building executables using mcc
Hi, do what the error tells you. Run mbuild -setup and select a Compiler. It seems like you have installed 8a as 64bi...

más de 13 años hace | 1

Respondida
when I load a dat file Iam getting this error how to rectify this?
Hi, the error seems pretty straight forward doesn't it? Number of columns on line 5 of ASCII file C:\Users\SHEEJA\Doc...

más de 13 años hace | 2

Resuelto


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

más de 13 años hace

Resuelto


Return the 'Size' of a String of Code
One of the most 'mysterious' parts of playing Cody is the sizing system. Given a string of commands, return the size that Cody w...

más de 13 años hace

Resuelto


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

más de 13 años hace

Resuelto


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

más de 13 años hace

Resuelto


Is my wife right?
Regardless of input, output the string 'yes'.

más de 13 años hace

Respondida
Fast transfer of .net array to matlab array.
Hi, actually its pretty fast. Working on that .NET Array directly is not that fast, but converting it into ML data type is fa...

más de 13 años hace | 2

| aceptada

Cargar más