expanding sin(x)232 (11/2/2003 4:31:37 PM) Hi, I;m trying to expand sin(x) = x - x^3/3! + x^5/5!... So I am using a for loop to do this, for n = 1:2:i term = x^n/factorial(n); end However this does not include the minus parts on every even term.... greg3236(2)
Statistical toolbox won't work?257 (11/2/2003 4:10:17 PM) I'm trying to use some functions like 'logrnd' from the Statistical toolbox (Matlab version 6.1). H:\MATLAB61\toolbox\stats is in my path, and the file logrnd.m is in that directory, still, i get 'logrnd.m n... Bart.VandewoestyneNOSPAM(7)
A newbie question...033 (11/2/2003 6:35:00 PM) Ok, im a total newbie with matlab, and propably just think of this from the wrong angle, but I can't get GUIDE to print out a casual text on buttondown, for example i have button X, that I want to print somethi... kimmo.mikkonen(1)
Selecting a submatrix of a given size and with a given center.055 (11/2/2003 3:19:45 PM) Hello. I have the following problem: I need to create a submatrix of a given size from a larger matrix. Moreover I need to select the submatrix from a given center: For example: I have the matrix A = [ 1 2 ... speciale(5)
for loop - sorry to post again127 (10/30/2003 10:12:51 PM) I really need to know how to do that problem i posted before using a for loop. I'm sorry to start a new thread but i'm kinda in a hurry. thank you justin ... artzj(3)
accessing one gui's variable in the other ? #2135 (11/2/2003 12:13:55 PM) How can i access to the variables like text field's string property and slider's value property of one gui window in the other ? ... rehan81(5)
accessing one gui's variable in the other ?040 (11/2/2003 12:13:13 PM) How can i access to the variables like text field's string property and slider's value property of one gui window in the other ? ... rehan81(5)
conversion of matrix elements to vector235 (11/1/2003 9:12:55 PM) how can I convert a matrix so that its elements appear in a vectorized form? e.g. A[1 2 4, 7 8 2] -> x=[1 2 4 7 8 2] Thanks a lot Allen ... richterallen(22)