Jump to content

Yuri

Members
  • Posts

    8
  • Joined

  • Last visited

    Never

Yuri's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Problem: Standard LabVIEW-controls demand the big number of mouse button pressings "for navigation". Ergonomics say: "It's irrational ..." Solution: It's necessary to have control with easy navigation and editing. The properties of the (numerical) table: 1. Two types of navigation for table: (A) - use of mouse moving, (B) - use of keyboard. 2. Use of "lock-cells" with "not-edit" data. 3. Diagnostics of errors (non-numerical data) and search of cells with errors of data. 4. Scheme of using of other data ("external" controls) by means of references add: This control will be used in my project. Any remarks, versions and your corrections -> important for me. Download File:post-4964-1150931965.zip
  2. Hi all, If we have the link on xcontrol, then we have access to xcontrol-property and xcontrol-method. However if for any subroutine make control-input="xcontrol referency", then in subroutine will be accessible only standard property and methods. Individuality xcontrol will be lost. There can be it a mistake, or can be - ideology. In any case it reduces convenience.
  3. Ben, thanks for "defer"-property. I did not know (!) it. It is bad But the common conclusion remains - use of reference slows down (noticeably) speed of execution (( If to think: It was always (and in old versions, for example LV5.1): use of property (== linked reference) for change of graphics-attributes is Nightmare #2! For me it: "perestroika" of ideologies of my programs Probably, it is time to write new recommendations for LabView-programmers and to make tests for "get/set" for different types of data (for example array of clusters), and for converts of data- types (variant and more). NOTE: you write: "The" nightmare " is now faster because I moved the reference node outside the loop " Excuse, but the position of reference can be any. Inside of cycle any way the copy of reference is created (automatically). Check up, please, timing does is not change.
  4. 1. Sorry, this test incorrect. For example look: the test for graphic method=GRAPH "more slowly" than " XY GRAPH ". But GRAPH-method use N-poits, XY-GRAPH-method use 2*N-points. hmm, it is a surprise... Say to your colleague (Vito:): please, remove from the diagram "cancel button " and "wait"-function 2. Profile? There is no hope - he is mistaken as the PC-timer. Please, also read LabVIEW Help-> Profile Performance and Memory Window: " Display-... Display can be inaccurate if you do not right-click the control or indicator and select Advanced
  5. Grey shade GREY it RGB with components (GREY, GREY, GREY). Therefore the algorithm (formula) for three numbers (R, G, B) and GREY is important. Frequently use (processing of digitalimaging) formulas (http://neuroface.narod.ru/files/mahfoudh_autoref.pdf) (1) grey=0.3*R+0.59*G+0.11*B Or (2) grey = (R+G+B)/3 (if R, G, B, GREY = [0,1]) Results are lower. 0-initial picture 1-calculation under the formula (1) 2-calculation under the formula (2) (since I lazy my example uses interpolation from labview above )
  6. The most simple way - to change the status of the stop button and add its local variables in sequence.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.