Tag Info

Hot answers tagged

4

Just center the data appropriately and force the regression through the 'origin': lm(y ~ I(x-x0)-1, offset=rep(y0,nrow(dat)) data=dat) You might then need to adjust the intercept coefficient accordingly. edited: offset needs to be a vector of the correct length. Another way to do this would be: set.seed(1) d <- ...


4

I think the interesting question here is, why you would ever want to choose which NIC to communicate through? Unless I'm missing the point, your application should only specify which server (ip and port) to connect to, and the TCP/IP routing scheme of the OS should choose the proper NIC to use based on the target network.


3

Without the Symbolic Math Toolbox, you can still do something similar. One way to do it would be to define x as a vector of discrete values and calculate f over that: x = 0:0.01:10; %// lower bound, step size, upper bound f = x.^2; %// use the element-wise power operator .^ y = f(x == 2); %// get the value for f where x is 2


3

I believe the problem is in your use of image(x_region,y_region,1) I suspect that you think that accesses the N elements of the region; but in fact, you access NxN elements! For a large region, that can easily blow up on you. In general, A(vec1, vec2) creates a section of numel(vec1) by numel(vec2). To solve this, you need to use the sub2ind function to ...


3

The number of local workers available with Parallel Computing Toolbox is license dependent. When introduced, the limit was 4; this changed to 8 in R2009a; and to 12 in R2011b. If you want to use 16 workers, you will need a 16-node MDCS licence, and you'll also need to set up some sort of scheduler to manage those. There are detailed instructions about how ...


2

Ok, this is very easy to do. set the equation so the result is the highest derivative. in you case d^3y/dt^3 There you have. nothing more to do. How to follow from here you may ask: you got x, and you can derive it, or apply any equation you want to it. The only doubt may come is: where the hell should i get y from? Easy! you have the equation, ...


2

Try calling boxplot using the optional labels parameter. Edit - further information about what boxplot actually does. boxplot does some complicated stuff - type edit boxplot to take a look through the code, and you'll see it's a very long and intricate function. Basically it makes a blank axis with no axis labels, which is why you're seeing empty values ...


2

According to sym documentation you can use eg. A = sym('A%d%d', [2 2]); to create a symbolic matrix. Is this what you mean? N = 5; % Initialize symbolic matrices with proper size X = sym('x%d', [N 1]); S = sym(zeros(N, 1)); f = sym(zeros(N, 1)); for i=1:N for j=1:N if i~=j S(i) = S(i) + X(j); end end ...


2

You can choose which interface to use with the LocalHost property when calling udp(): http://www.mathworks.com/help/instrument/localhost.html So in your case u = udp(rhost,rport,'LocalHost','IP_OF_NIC') Btw, in case you're curious how to approach this: You can find all properties of an object with propinfo(u). Then find the documentation for each ...


2

With size(A) = [n,m], your constraints are of the form for each {i in 1..m} -b <= sum {j in 1..n} a_{ij} * x_{ij} <= b this is the same as two sets of constraints for each {i in 1..m} sum {j in 1..n} a_{ij} * x_{ij} <= b sum {j in 1..n} a_{ij} * x_{ij} >= -b Since you have to write it in the form Ax <= b, it would look like for ...


1

Based on a closer read at the EasyGUI code, it looks like gui.manualgui and gui.container are intended to use the entire figure window as the parent of the GUI, not any other uicontainer. (Maybe I'm wrong, but I don't see any other files that subclass gui.container besides autogui and manualgui. HOWEVER, it looks like we are in luck! The gui.container code ...


1

This is very easy: You have |Ax| <= b. This is equivalent to (as you yourself noted) to -b <= Ax <= b. So, you have additional inequality constraints: Ax <= b and -Ax <= b. Thus you have over all AA = [ A ; -A ] and bb = [b;-b] defining your abs-value constraints: x = bintprog( f, AA, bb );


1

I'm assuming you're running some kind of UNIX. I'm also assuming with "crash" you mean that MATLAB itself dies. Before you run MATLAB you can install a hook to react on signals (using trap): http://www.linuxcommand.org/wss0160.php A list of signals: http://en.wikibooks.org/wiki/Bourne_Shell_Scripting/Debugging_and_signal_handling#System_signals Obviously ...


1

First off, your code leaves the default MATLAB input pre-processing intact. You can check this with: net2.inputs{1} When I put your code in I got this: Neural Network Input name: 'Input' feedbackOutput: [] processFcns: {'fixunknowns', removeconstantrows, mapminmax} processParams: {1x3 cell array of 2 ...


1

I haven't done anything like this in the past so I'm only speaking from a theoretical point of view. It is my understanding that the LocalHost is what determines how the local machine will connect to an external entity. Here is a link to the documentation: LocalHost You'll obviuosly have to setup the LocalHost settings prior to creating the UDP ...


1

I think the reason -x is not supported anymore is the fact that Matlab now has a product called "coder", which converts .m files to .c files and can also create .mex files from "suitable" .m files using the option -args to specify the input arguments: http://www.mathworks.com/videos/generating-c-code-from-matlab-code-68964.html


1

The size of each image in memory when you read it into matlab matrix will be 2736x3648x3 bites = 29942784 bites ~ 30 MB Sometimes for processing the image has to be converted from uint8 to double, in this case the size will be even larger at 8*30 = 240 MB. If you have an array of these images (or do extensive processing) you can run out of memory. You ...



Only top voted, non community-wiki answers of a minimum length are eligible