Group Abstract Group Abstract

Message Boards Message Boards

0
|
1.9K Views
|
0 Replies
|
0 Total Likes
View groups...
Share
Share this post:

How can I initialize the results of a while cicle?

Posted 10 years ago

Hello to everyone, I still don't know Mathematica very well.. today I have a big question, how can I initialize the results of a while cycle ? My while has to create every time a new matrix and I can print them, but how can I use them later? And how can I call them separately? I mean give every result matrix a different name?

Length[y]=3;
While[k < Length[y], 
 A = Table[
   Table[{ImageData[ImageT2FLAIR][[j, i]] > Final1[[1, 1]] && 
       ImageData[ImageT2FLAIR][[j, i]] < Final1[[1, 2]]} /. {True -> 
       ImageData[ImageT2FLAIR][[j, i]], False -> 2}, {i, 1, 
     dimA[[2]]}], {j, 1, dimA[[1]]}];  
Print[A]
]

I need the three A separately!

I hope someone can help me, Thanks a lot, Natascha

POSTED BY: natascha damico
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard