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

13 years ago | 0

| accepted

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

13 years ago | 0

| accepted

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

13 years ago | 1

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

13 years ago | 1

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

13 years ago | 1

| accepted

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

13 years ago | 0

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

13 years ago | 0

| accepted

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

13 years ago | 2

| accepted

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

13 years ago | 0

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

13 years ago | 0

Solved


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

13 years ago

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

13 years ago | 0

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

13 years ago | 0

| accepted

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

13 years ago | 1

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

13 years ago | 1

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

13 years ago | 0

| accepted

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

13 years ago | 5

| accepted

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

13 years ago | 0

| accepted

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

13 years ago | 0

| accepted

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

13 years ago | 0

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

13 years ago | 1

| accepted

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

13 years ago | 0

| accepted

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

13 years ago | 1

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

13 years ago | 2

Solved


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.

13 years ago

Solved


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

13 years ago

Solved


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

13 years ago

Solved


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

13 years ago

Solved


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

13 years ago

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

13 years ago | 2

| accepted

Load more