답변 있음
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년 초과 전 | 0

| 수락됨

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

13년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 1

답변 있음
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년 초과 전 | 1

답변 있음
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년 초과 전 | 1

| 수락됨

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 2

| 수락됨

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 0

문제를 풀었습니다


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년 초과 전

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 1

답변 있음
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년 초과 전 | 1

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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...

거의 14년 전 | 5

| 수락됨

답변 있음
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...

거의 14년 전 | 0

| 수락됨

답변 있음
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...

거의 14년 전 | 0

| 수락됨

답변 있음
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...

거의 14년 전 | 0

답변 있음
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. ...

거의 14년 전 | 1

| 수락됨

답변 있음
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...

거의 14년 전 | 0

| 수락됨

답변 있음
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...

거의 14년 전 | 1

답변 있음
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...

거의 14년 전 | 2

문제를 풀었습니다


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.

거의 14년 전

문제를 풀었습니다


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

거의 14년 전

문제를 풀었습니다


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

거의 14년 전

문제를 풀었습니다


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

거의 14년 전

문제를 풀었습니다


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

거의 14년 전

답변 있음
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...

거의 14년 전 | 2

| 수락됨

더 보기