el 01-29-2018 03:08 PM
Hola, que tal soy nuevo utilizando labview, aún estoy aprendiendo y para ellos estoy realizando una serie de ejercicios, en los cuales uno de ellos me piden controlar el número de digitos significativos que se pueden ver en un resultado (significant digits), se que dando click derecho>>propiedades>>display format, se pueden modificar el número de decimales que aparecen pero quiero saber si existe una forma de hacerlo de manera manual sin tener que entrar a las propiedades.
Muchas gracias Saludos.
¡Resuelto! Ir a solución.
01-29-2018 03:25 PM - editado 01-29-2018 03:28 PM
You can go to the same place with "right-click...display format...." (still goes to "properties", just faster :D)
el 01-29-2018 03:33 PM
Muchas gracias por tu respuesta, me es útil, pero busco una forma de agregar un control, para unicamente colocar un numero o dato y ese sea el numero de decimales que me muestre.
el 01-29-2018 03:58 PM
You can define and change the display format at run time using property nodes, but that requires some code. You could create a control for the number of digits and adjust the format whenever it changes.
You might be able to make an x-control, but that's much more work.
el 01-29-2018 04:11 PM
@altenbach wrote:
You can define and change the display format at run time using property nodes, but that requires some code. .
Here's a quick example (of course you need to run the VI.You also only need to write to the property if the value digits changes, so use e.g. an event structure).
el 01-29-2018 04:38 PM
Justo lo que necesitaba, de verdad muchas gracias