×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

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?

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
Replies continue below

Recommended for you

RE: How to do a reccurent substitution in a symbolic matrix in matlab withor the ''FOR'' loop?

Obviously a homework question. you need to learn about the . modifier for arithmetical operations.
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?

(OP)
@Greg Locock
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?

Avoid using only "FOR" or any other loops at all? You can organize, for example, through "WHILE" ...

clc
clear
z=0
while z<10
z=z+1
k = [ z+1, z^2; exp(z), z^3]
kk(z,1)={k};
end

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members! Already a Member? Login



News


Close Box

Join Eng-Tips® Today!

Join your peers on the Internet's largest technical engineering professional community.
It's easy to join and it's free.

Here's Why Members Love Eng-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close