Community Tip - If community subscription notifications are filling up your inbox you can set up a daily digest and get all your notifications in a single email. 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).