Beantwortet
smoothing unevenly spaced data
when you say unevenly spaced, do you have the time information? You can try resample them using some interpolation method: ...

etwa 13 Jahre vor | 0

Beantwortet
Adjusted Rsquared in GeneralizedLinearModel Class
Hi Peter, It is the same as Generalized R^2: http://en.wikipedia.org/wiki/Coefficient_of_determination#Generalized_R2 You ...

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
Java Heap Memory on Mac OS X
I think the limit is a 1/4 of your total RAM or memory. Are you referring to the same machine? Your windows machine probably has...

etwa 13 Jahre vor | 0

Beantwortet
How can I model a delay differential equation in simulink?
You can use the delay block: http://www.mathworks.com/help/simulink/slref/delay.html For the rest you just need integrator...

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
How to conserve the "Editor Window" - R2012b
Hi Vincent that is not possible in the current release. The best workaround is for you to keep a file open or put something in s...

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
Open (but no run) a *.m file via drag and drop - R2012b
I am not sure there is a documented way of doing that. But if you already have the editor open and if you drag it into the edito...

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
Index exceeds matrix dimensions at buffer function
>> clear and start fresh, There could be a conflict in the name of the variable vs name of the function

etwa 13 Jahre vor | 0

Beantwortet
How to exit a GUI program?
>> close all force Well depends on what you want exactly, but after exist if you feel there are some hidden figures or some r...

etwa 13 Jahre vor | 8

| akzeptiert

Beantwortet
save a cell matrix as csv format
The following solutions page answers this exact questions: http://www.mathworks.com/support/solutions/en/data/1-1CCMDO/index....

etwa 13 Jahre vor | 0

Beantwortet
Why do some commands run faster or slower in the command line than an M.file?
In general in a MATLAB file the JIT has the opportunity to preallocate memory and perform other run time optimization. You will ...

etwa 13 Jahre vor | 1

Beantwortet
OS X java update causes Matlab Parallel Computing Toolbox to break
Here is a link to a bug report. This is a different java release, but may be applicable to the issue you are facing: http://w...

etwa 13 Jahre vor | 0

Beantwortet
Why the result of (1-0.6667)==0.3333 is zero in MATLAB? how can I get one?
That is because they are not the same. >> t-0.3333 ans = 5.55111512312578e-17 They can be equal by s...

etwa 13 Jahre vor | 1

Beantwortet
Deleting rows and columns of all zeroes in a symbolic matrix
The following worked perfectly fine for me. Can you share the exact error message you got? x = [1 1 0;0 0 0;0 1 0] >...

etwa 13 Jahre vor | 0

Beantwortet
How to know clearly about the xPC Target system?
Your first stop should be the product page: http://www.mathworks.com/products/xpctarget/ You will find videos demos and ot...

etwa 13 Jahre vor | 2

Beantwortet
sendmail.m and Microsoft Exchange Server
Have you looked through this documentation page? http://www.mathworks.com/help/matlab/import_export/sending-email.html

etwa 13 Jahre vor | 0

Beantwortet
Implement a Gaussian filter with its variance σ as a user input...
Since this is standard functionality, you can expect that someone has already implemented this and shared this in File Exchange:...

etwa 13 Jahre vor | 0

Beantwortet
Play recorded video on gui and take frame from it
xyloObj = VideoReader('xylophone.mpg'); read(xyloObj, frameNumber); Example from documentation: http://www.mathworks.co...

etwa 13 Jahre vor | 0

Beantwortet
Leave one out Help
Sunil, if you have the Statistics Toolbox you can use 'crossval' to perform leave one out cross validation: http://www.mathwo...

etwa 13 Jahre vor | 0

Beantwortet
the webinar "Medical Image Processing"
Vinny, webinar files are usually are posted on matlab file exchange. If you don't find it there feel free to mail the presenter ...

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
MPC for a non-system
MPC can be used to control a non linear plant, because the control output is computed at each time step based predicted plant ou...

etwa 13 Jahre vor | 0

Beantwortet
using matlab for artificial neural network in medicine
If you are interested in books about neural networks that use MATLAB, then check out the book program list: http://www.mathwo...

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
What does the operator "~=" mean?
something(somthing_else)=0; In MATLAB refers to logical indexing and assignment. In this case somthing_else has to be logical...

etwa 13 Jahre vor | 4

| akzeptiert

Beantwortet
error in betarnd function
This is indeed a bug in betarnd which existed in releases prior to MATLAB R2011a. If you _are_ using an older release you are...

etwa 13 Jahre vor | 0

Beantwortet
How can I import data from a .hpf file
I think this is what you are looking for: http://www.delsys.com/KnowledgeCenter/NetHelp/default.htm?turl=HTMLDocuments%2Fexam...

etwa 13 Jahre vor | 0

Beantwortet
how to define target for my neural network problem
Your targets are positives or negatives. Which means you can create a vector of 1s or 0s to represent positives or negatives.

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
SVMTRAIN - LEAST SQUARE METHOD OR QUADRATIC PROGRAMMING METHOD
QP solves the quadratic optimization using the Hessian. In a quick sentence, the advantage is that it is higher in precision and...

etwa 13 Jahre vor | 1

Beantwortet
Example code for fmincon error.
myfun is you objective function, you shouldn't run that. Create the definition of myfun into a separate file called myfun.m: ...

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
receiving email in matlab
You can use ActiveX to open a connection to Outlook as follows: http://www.mathworks.com/support/solutions/en/data/1-RTY6J/ ...

etwa 13 Jahre vor | 0

Beantwortet
How to represent the function "argmin" in matlab?
Can you elaborate? argmin means 'argument of the minimum' of a function. Which means you want to perform an optimization. C...

etwa 13 Jahre vor | 0

Beantwortet
Accessing the folder in Parent Directory
If you are in: E:\Bless\Project\TESTING\ You can try the following without using the absolute path: load('..\LEARNING\my...

etwa 13 Jahre vor | 2

| akzeptiert

Mehr laden