Community Tip - Want the oppurtunity to discuss enhancements to PTC products? Join a working group! X
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.
Solved! Go to Solution.
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).
Please, Help me ....
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).