cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X

Problem for display graphics

ptc-4346041
1-Newbie

Problem for display graphics

Hello,

I don't understand, i can't to display my graphics 'TF1' OUEXCLUSIF 'TF3'

Do you can to help me ?

Thank you very much.

1 ACCEPTED SOLUTION

Accepted Solutions
RichardJ
19-Tanzanite
(To:ptc-4346041)

Your problem is that f and tpas are both range variables. Range variables are NOT vectors. They are iterators (i.e. loop variables). That means TF1, for example, is calculated for every value of f AND every value of tpas. You need to make f and tpas vectors (as a good rule of thumb, only use range variable to index vectors. Use vectors for everything else).

View solution in original post

2 REPLIES 2

Please, Help me ....

RichardJ
19-Tanzanite
(To:ptc-4346041)

Your problem is that f and tpas are both range variables. Range variables are NOT vectors. They are iterators (i.e. loop variables). That means TF1, for example, is calculated for every value of f AND every value of tpas. You need to make f and tpas vectors (as a good rule of thumb, only use range variable to index vectors. Use vectors for everything else).

Top Tags