@DD_13910355 wrote:
I create parametric bitmaps that depend on the values of the calculated variables using the READ_BLUE function.
How to insert a numeric value into such a picture as a bitmap that changes depending on the calculated variables?
READ_BLUE?
You created a grayscale picture right from scratch.
Is your intention to actually see for instance the x-coordinate "a=30" of the circle center written pixelwise in the picture matrix?
There is no method Mathcad would offer right out of the box, but you sure could write your own.
You would have to create a vector of bitmaps matrices for all letters and numbers first, and then split the number into its individual digits (either by continuously using mod 10 or by turning the number into a string via "num2str" and access the individual characters), select the appropriate bitmap from your vector of bitmaps, scale it as desired and combine it with the picture bitmap.
Quite some work but sure possible to do. Only worth the effort if your really need it quite often.
How about saving the bitmap to a file with the changing values being part of the file name? Would this help? Or is it mandatory that you actually SEE the numbers (which ones) in the picture?