Tagged Questions

3
votes
2answers
125 views

php equivalent of send and getattr?

Question: If Ruby gets invited to a party and brings: foobarobject.send('foomethod') .. and Python gets invited to the same party and brings: getattr(foobarobject,'foomethod')() .. what does …
1
vote
3answers
45 views

Symbolic Logic - Question about language

Is there any difference between these two statements, given the following language?? B: Ben likes dogs. J: John likes dogs. M: Mary likes dogs. Ben likes dogs and either John or Mary likes dogs. …
0
votes
0answers
102 views

Symbolic math: DOUBLE cannot convert the input expression into a double array

I want to solve an integration with Symbolic math toolbox. However it seems that there is a problem whith double and sym variables. I wrote this code: function [q] = Eq27(Lg,x,r) q = 0; for k = …
0
votes
3answers
203 views

MATLAB: Why does solve return an empty sym object?

I´m trying to solve this set of equations in MATLAB and I get an empty sym object: equations = {'I2B+I2EQAB=I22B+I2EQBC',... 'I2A=I2EQAB+I2EQAC+I22A',... …
0
votes
3answers
109 views

How do I create a link to open an ssh connection

I am trying to create a link to open an ssh connection to another computer. I am an OS X 10.5.7 and Ubuntu 9.04 user. I am tempted to create a symbolic link as such: ln -s "ssh user@computer_name" …
0
votes
5answers
616 views

Matlab symbolic toolbox: What’s wrong with my code?

I'm trying to solve three simultaneous nonlinear equations in the unknowns x, y, z with Matlab's symbolic toolbox. What's wrong with the following code? solve( '(x/4 + y/2 + z/4)*(1/(8*x) + 1/(16*y) …