How to do a reccurent substitution in a symbolic matrix in matlab withor the ''FOR'' loop?
How to do a reccurent substitution in a symbolic matrix in matlab withor the ''FOR'' loop?
(OP)
Hi
I have this symbolic 2x2 matrix in Matlab. z is A Symbolic variable
k(z)= [ z+1, z^2; exp(z), z^3].
I need a value of k(z) for z=1:N
How to do this without a loop '' FOR''
Thanks
I have this symbolic 2x2 matrix in Matlab. z is A Symbolic variable
k(z)= [ z+1, z^2; exp(z), z^3].
I need a value of k(z) for z=1:N
How to do this without a loop '' FOR''
Thanks
RE: How to do a reccurent substitution in a symbolic matrix in matlab withor the ''FOR'' loop?
k =
2.0000 3.0000 4.0000 5.0000 6.0000 1.0000 4.0000 9.0000 16.0000 25.0000
2.7183 7.3891 20.0855 54.5982 148.4132 1.0000 8.0000 27.0000 64.0000 125.0000
for N=5. it's a 2 liner, no loops.
Cheers
Greg Locock
New here? Try reading these, they might help FAQ731-376: Eng-Tips.com Forum Policies http://eng-tips.com/market.cfm?
RE: How to do a reccurent substitution in a symbolic matrix in matlab withor the ''FOR'' loop?
Honestly I did not get what you said
could you please give me the Matlab code you used to get your answer?
My problem here is not the answer but how to get k for each value of Z without the loop.
Kindly send me the code
Thanks
TEIF
RE: How to do a reccurent substitution in a symbolic matrix in matlab withor the ''FOR'' loop?
clc
clear
z=0
while z<10
z=z+1
k = [ z+1, z^2; exp(z), z^3]
kk(z,1)={k};
end
RE: How to do a reccurent substitution in a symbolic matrix in matlab withor the ''FOR'' loop?
z=1:10;
k=[z+1,z.^2;exp(z),z.^3]
Cheers
Greg Locock
New here? Try reading these, they might help FAQ731-376: Eng-Tips.com Forum Policies http://eng-tips.com/market.cfm?