First
|
Prev |
Next
|
Last
Pages: 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767
How to cut a slice through a matrix? Hi. I have done a simulation where I calculate a certain value (v) for all combinations of three input values (x, y, z). These are currently represented in the variables X, Y, Z and V which are all three-dimensional mesh-grid-style arrays. Now, I realize that variations of the variable Z are not so interesting, bec... 7 May 2010 07:48
How to remove one cell from a cellarray ?? I have this : SX = [] 'y1' 'x2' 'y2' 'x3' 'y3' [] [] 'x5' 'y5' How can I remove empty cell [] which results : SX = 'y1' 'x2' 'y2' 'x3' 'y3' 'x5' 'y5' then I can call for example : SX{3}='x2' ... 7 May 2010 05:37
Differential equations Hello everyone, I'll be very thankful if someboby helps me: I need to solve a system of two differential equations, quite complicated and face that ode45 spends hours and cannot solve it. I tried ode113 for 6 hours, cpu was loaded on 100%, but no result. Is it ok for solvers to work so long? And since I have not got r... 7 May 2010 04:33
How to correct phase of a system? Hey, I was wondering if someone is able to help me with the following problem: I obtained a MIMO system sys by linearizing (with linmod) a nonlinear simulink model. Someone the phase of this system is not correct... For example, the transfer from input 1 to output 1 looks as: mag | -----------------... 7 May 2010 03:28
GENERATE RANDOM BITS AT DIFFERENT DATA RATES Please let me know as to how i can go about generating random bits 1 and 0 at different data rates ... 10 May 2010 12:04
setting uitable cell choice list during run-time I am having a similar issue. That is, I need to access the uitable choice lists during run time. Did you ever resolve your problem? If so how? ... 8 May 2010 01:31
Iimplement a matlab function of two inputs in simulink hi, i want to model the following matalb code in simulink. I=find(afsb0 > A); where A is a scalar quantity fsbo is a matrix of of 1xM and has a double data type. Kindly help/hints required. Thanx ... 13 May 2010 06:06
Need help using erfc I'm doing a statistics project and when using the erfc, I get a value my professor tells me is wrong. "1-erfc((-.5/sqrt(.01/3))/sqrt(2))/2 = 0" I know that the real value is close to 0, but isn't actually 0. It's something on the order of 2*10^-15 or so. How can I get MatLab to give the the correct value?... 8 May 2010 14:30
How to transfer a VC matrix to matlab workspace and manipulate it under matlab GUI ? I would like to transfer a VC matrix to matlab main program workspace, than i can observe it by Matlab array editor, or directly manipulate it under matlab GUI. I tried engdemo.c, but i found that under this mode, matlab runs on background, there is no matlab main program GUI, I can only excute matlab comma... 11 May 2010 05:41
which way is better ? u(x, y) is an unknown function, I need to compute u(x, y) at each time step t1 < t2 < t3 < ... < tk; The domain is discretized as x1 < x2 < x3 < ... < xm and y1 < y2 < y3 < ... < yn; I have the following code: for t1 : tk for x1 : xm for y1 : yn group 1; group 2; ... 6 May 2010 23:08 |