Jump to content

Wouter

Members
  • Posts

    129
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Wouter

  1. I never said that I was in favour for the small compact VI But anyway I think I would rather like to see the icon stretched out a little then having the little gabs.
  2. Maybe make the icon just as large as the normal clear icon...
  3. What is exactly the functionality/use of the 'upstream error'?
  4. Now with http://lavag.org/topic/14873-string-to-character-array-string-package/ this can be implemented?
  5. Looks good JG. I think we have left one discussion... what kind of icon should the VI have? One that is fits between property nodes or the one we have now? And I would change the label of "Error Code Matches" to "Error supressed?", I find the first terminology pretty vague namely.
  6. This OpenG Review is closed. See Summary Post here. Please start a new thread to discuss new changes to this VI. VI Name: Supress error Total VIs: 2 Description: This VI has a integer (array), error code, as input and when the error code matches the error code on the error wire it supresses the error. Note: - Blockdiagram: Scalar: Array: Code: Supress Error.zip What are you thoughts on this VI? Would you like to see such a function in OpenG? Can you optimize the code? In which package should it be included? Should it be rejected?
  7. True also convert the lower to double to avoid the coersion dot.
  8. Ok so this VI stays the same... then this maybe could be a candidate to cut a string into chunks. Also when this ToCharacterArray VI is implemented then also http://lavag.org/topic/14875-shuffle-string/ could be implemented.
  9. I think it should be added. It can be added easily to the current code. Just make the 1 constant a input variable and set 1 as a default.
  10. Maybe we want to be able to split numbers as well? Like; input a integer 33747283; output a integer array [3,3,7,4,7,2,8,3]. But if this is very usefull I don't know. I never needed this in practice.
  11. Maybe the code is faster when the check on length is done first. If 32 do check if chars are correct, otherwise return...
  12. Maybe some more could be added aswell. I say - AES, http://www.soslabvie...library-labview - HillCipher, available also somewhere on the web - CeasarCipher (easy) - Blowfish -edit- oh and the output of the md5 and SHA VI's have to be the same in my opinion. I believe the VI's of Ton have 3 different output formats.
  13. Wouter

    IsOdd

    Ya correct I forgot that first part.
  14. Wouter

    IsOdd

    Hmmm knew about the node but did not think of using it like that. But I'm sure that my version is faster. The rotation is O(n) while my function is O(1), proberbly it will not make that big difference but still. Further I like mine more because it is just 1 line, in a manner of speaking that the wire changes position (moves up)
  15. True I was wondering about that topic as well... because I have a bunch of VI's for all kind of stuff, for example to calculate the Levenshtein distance or Jaro–Winkler distance but I can imagine that not every will need those VI's or want them on the pallet, but other people, like myself, may want them on the pallet...
  16. Wouter

    IsOdd

    VI Name: IsOdd Total VIs: 7 Description: Checks if a number is odd (true) or even (false) Note: - Blockdiagram: Code: Numeric IsOdd.zip What are you thoughts on this VI? Would you like to see such a function in OpenG? Can you optimize the code? In which package should it be included? Should it be rejected?
  17. VI Name: Temperature conversion Total VIs: 31 Description: This VI converts a temperature to one of the existing temperature scalings. One could use the convert unit VI from the pallet. But firstly expression nodes prevent VI's from being inlined also it does not support all temperature scalings. Note: Blockdiagram: - Code: Conversion temperature.zip What are you thoughts on this VI? Would you like to see such a function in OpenG? Can you optimize the code? In which package should it be included? Should it be rejected?
  18. VI Name: String shuffle Total VIs: 1 Description: This VI shuffles a string. Note: - Blockdiagram: Code: StrShuffle.zip What are you thoughts on this VI? Would you like to see such a function in OpenG? Can you optimize the code? In which package should it be included? Should it be rejected?
  19. VI Name: String IsEmpty Total VIs: 2 Description: These VIs check if a string is empty and are alternatives to the existing one. I often find myself checking if 2 strings or more are empty to have a fast exit out of one of my string functions. Note: - Blockdiagram: Code: StrIsEmpty.zip What are you thoughts on this VI? Would you like to see such a function in OpenG? Can you optimize the code? In which package should it be included? Should it be rejected?
  20. Currently I use it to split a string into chars and then randomize the array. Shortly put to shuffle a string. Further it can probably be used to spit a binary string to afterwards cast it to a integer. Further: http://www.dotnetperls.com/tochararray
  21. Currently I use the VI with 2 inputs for a fast function exit when calculating the hamming distance of two strings. The array VI I meanly made because well... I can I'm sure there are probably more use-cases but I can't think of any of them now.
  22. This OpenG Review is now closed. See Summary Post here. Please start a new thread to discuss new changes to this VI. Please PM me if there are any issues with this thread. VI Name: String to char array Total VIs: 1 Description: This VI creates a array of characters of a string. It splits a string every character. Note: Maybe there should be added another input with which you can tell that the string needs to be splitted every 2/3/4... chars instead of every char. This can easily be done by using the counter in the for loop together with modular arithmetic and a case structure. Blockdiagram: Code: String to Char Array.zip What are you thoughts on this VI? Would you like to see such a function in OpenG? Can you optimize the code? In which package should it be included? Should it be rejected?
×
×
  • Create New...

Important Information

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