First
|
Prev |
Next
|
Last
Pages: 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495
Engineering Hi, I am medoling a system on ode45 solver. I need to make the for loop for caculating each input data. So can anyone help me for making for loop. Thanks, mantoo ... 14 Jun 2010 09:31
About OOP programing classdef Dendrite properties d_weight; d_points_to; end methods(Static) function obj = Dendrite(weight,points_to) if nargin>0 obj.d_weight=weight; obj.d_points_to=points_to; end end end end ...... 15 Jun 2010 04:20
Engineering Hi, I am medoling a system on ode45 solver. I need to make the for loop for caculating each input data. So can anyone help me for making for loop. Thanks, mantoo ... 14 Jun 2010 08:24
How to find two unknowns with two equations I am a new Matlab user and I have a problem. Could you help me to solve this problem. I have two equations: 5*cos(t1+1/6*pi)+5*cos(8*t2+9*t1+1/6*pi)-5*cos(7*t2+7*t1+1/6*pi)-5*cos(7*t2+8*t1+1/6*pi)+5*cos(6*t2+7*t1+1/6*pi)-5*cos(5*t2+6*t1+1/6*pi)+5*cos(8*t2+8*t1+1/6*pi)+5*cos(10*t2+10*t1+1/6*pi)-5*cos(4*t1+1/6*pi+3*t2... 14 Jun 2010 08:24
RTW auto code customization Hello, I want generate the auto code using RTW in which the auto code should contain the output port name (output signal name) as export function. E.g. If Matlab model have outputs as temp_out and batt_out, then in generated C auto code I want them as extern BOOLEAN temp_out; extern BOOLEAN batt_out; #define... 14 Jun 2010 08:24
Array operations Dear Guys, I have a small Issue. Please help me to sort out I have a function like function selectPointsLT_Callback(hObject, eventdata, handles) [x,y]= ginput(5); LTx1 = num2str(x(1)); LTy1 = num2str(y(1)); ........................................... Here [X,Y] is a array (length 5) and I would like... 15 Jun 2010 10:54
Behavior of continuous time Stateflow charts Hello. I was trying out a program (developed by others for 2007a) under Matlab 2010a. I got the following message: The behavior of continuous time Stateflow charts has changed significantly in R2007b. Please read the documentation for the chaned behavior. Could anybody please let me know which documentation and h... 14 Jun 2010 10:37
Need Urgetn Help Hi. I would like to seek your assistance to calculate hit and misses for iris flower data set using MATLAB. I tried searching the web to get access for the code n tried to understand it but i failed in my attempt. Kindly explain me the code and help me sought out the issue. ... 14 Jun 2010 07:19
Mean of intensity of several pictures Hi all, From a file with several pictures, I would like to calculate the intensity of each pictures, and make an average. I can do it for one picture, but I don't manage to o it for several. Thank you for you help For one picture: A = imread('test.bmp'); GrayImage = rgb2gray(A); Intensity = sum(sum(Gra... 18 Jun 2010 05:52
Estimation Problem in Newton Method Hi guys, I got a problem in fitting a distribution in more than 5 observations by using newton method. Here is the code. Thanks! d = [-1 5 2 -2 4 3 -3 6 3 1 -2]; % Data x0=[0 1]'; % Starting values x(:,1)=x0; N=1; for n=N:15 m = sum(d-x(1,n))/x(2,n); s= -3/(2*(x(2,n)))+(1/(2*(x(2,n)^2)))*(sum((d-... 17 Jun 2010 14:31 |