Jump to content

crossrulz

Members
  • Posts

    541
  • Joined

  • Last visited

  • Days Won

    23

crossrulz last won the day on November 4

crossrulz had the most liked content!

1 Follower

Profile Information

  • Gender
    Male
  • Location
    Cincinnati, OH

LabVIEW Information

  • Version
    LabVIEW 2019
  • Since
    2005

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

crossrulz's Achievements

  1. Is ShaunR actually a robot? https://www.youtube.com/watch?v=UymlSE7ax1o
  2. I have had this in my toolbox for a long time to do what you are asking. It is part of a QuickDrop plugin I made to "fix up" a VI, similar to Darren's Nattify plugin. Size Diagram Window.vi
  3. Hopefully, these are just those sleeper accounts Michael mentioned earlier.
  4. You are limited by the max rate of the AI module. What module are you trying to read from?
  5. Yeah, but when the picture are suddenly in the "Unread Content" stream, it makes it a lot harder to ignore.
  6. And now I'm seeing NSFW spam. Seriously, until things get fixed, all new signups should be blocked.
  7. It is called Search 1d Array for a reason. It cannot search a 2D Array. So now the question is: What do you expect for an output? Do you want to prioritize search the row or the column?
  8. To put in a little more detail... For NI, NXG was way more than just a rewrite of LabVIEW. NXG was a framework that all of their applications would use. This is most obvious with the UI. There is a full project just to manage the UI components: Fuse Design System
  9. That sounds like the LabVIEW Solution Builder, which I use. It works quite well.
  10. I have been using PPLs in my architecture for many years with very little issues. But I am generally using them in Windows only and the PPLs are pretty small. I use the LabVIEW Solution Builder to build my core libraries. I will also state that NI is actively working on the PPL build process behind the scenes.
  11. What is the communication bus that is used to talk to the instruments? Assuming anything VISA, it is likely that the communication time will swamp out any gains from going parallel. As a gut feel, I would likely go with the Parallel FOR Loop simply because it is easier to code up than two FOR loops (one to launch the VIs and a second to collect the results).
  12. Update: There is now a 2024 Q1 patch that fixes this bug. So you no longer need to wire up the Type Specifier when using the static VI reference wired to the VI Path input on the Open VI Reference. The patch also covers several security issues. Those who are using 2024Q1 really should go into NIPM and get the update.
  13. FYI, there is a new feature in LabVIEW 2024Q1 where can wire the reference to the VI Path input on the Open VI Reference. You do also need to wire up the Type Specifier if you need the strict type. NI has stated the need for the type specifier as a bug per this thread on the dark side: New Open VI Reference Functionality
  14. Top: Start Asynchronous Call - Loads a VI, starts running the VI, and then waits for it to complete. The SAC returns as soon as the VI has started to run. The Wait On Asynchronous Call is what waits for the VI to complete and return its outputs. Middle: Call By Reference - Loads a VI and runs it. The CBR will not return until the called VI is complete. Bottom: Run VI Invoke Node - Loads a VI and runs it. If you wire FALSE to the Wait Until Done input, the VI runs asynchronously. If you wire a TRUE to the Wait Until Done input, the invoke node will not return until the VI is complete. You do not have a direct way of getting the results once the VI is complete.
  15. Sounds like something a real AI would do to throw off the humans...
×
×
  • Create New...

Important Information

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