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

etwa 13 Jahre vor | 0

| akzeptiert

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

etwa 13 Jahre vor | 0

| akzeptiert

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

etwa 13 Jahre vor | 1

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

etwa 13 Jahre vor | 1

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

etwa 13 Jahre vor | 1

| akzeptiert

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

etwa 13 Jahre vor | 0

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

etwa 13 Jahre vor | 0

| akzeptiert

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

etwa 13 Jahre vor | 2

| akzeptiert

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

mehr als 13 Jahre vor | 0

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

mehr als 13 Jahre vor | 0

Gelöst


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

mehr als 13 Jahre vor

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

mehr als 13 Jahre vor | 0

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

mehr als 13 Jahre vor | 0

| akzeptiert

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

mehr als 13 Jahre vor | 1

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

mehr als 13 Jahre vor | 1

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

mehr als 13 Jahre vor | 0

| akzeptiert

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

mehr als 13 Jahre vor | 5

| akzeptiert

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

mehr als 13 Jahre vor | 0

| akzeptiert

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

mehr als 13 Jahre vor | 0

| akzeptiert

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

mehr als 13 Jahre vor | 0

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

mehr als 13 Jahre vor | 1

| akzeptiert

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

mehr als 13 Jahre vor | 0

| akzeptiert

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

mehr als 13 Jahre vor | 1

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

mehr als 13 Jahre vor | 2

Gelöst


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.

mehr als 13 Jahre vor

Gelöst


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

mehr als 13 Jahre vor

Gelöst


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

mehr als 13 Jahre vor

Gelöst


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

mehr als 13 Jahre vor

Gelöst


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

mehr als 13 Jahre vor

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

mehr als 13 Jahre vor | 2

| akzeptiert

Mehr laden