-
Posts
546 -
Joined
-
Last visited
-
Days Won
25
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by crossrulz
-
from the NI help QUOTE Just to check to see if it might be the student version or communication error, you might want to make a very small program that just reads and writes a few variables and see if you get the error that way. If this works fine, then I would start looking at the code really hard.
-
Q's - Whats all the fuss about
crossrulz replied to ShaunR's topic in Application Design & Architecture
This is starting to become a heated debate. People have a tendency of finding a good tool and then try to use it as a cure-all. We have all done it. I think what ShaunR is trying to say is that a lot of people on this forum will instantly say to use a queue without much thought for any other tool. Yes, queues are one of the more powerful tools in LabVIEW. Are they for every situation? Absolutely not. They can easily complicate things, like any other powerful tool. But as far as passing data between loops, I'd say that, in most situations, queues are the best route to go for mostly two main reasons: 1. They do not lose data (every element written into the queue will be available for dequeue) and 2. if there is no data in the queue, there is no CPU usage for the dequeue loop (assuming infinate timeout). Polling globals uses valuable CPU time. I have to put code on computers that are 10+ years old, so I need all the CPU time I can get. -
QUOTE (postformac @ Apr 24 2009, 02:49 PM) Yep, put the heading as the first row in the array. In case you didn't know, you can use the comma delimited file and make the extension a .csv (instead of .txt) and windows will automatically think it is an Excel file.
-
There might be a better way, but create your table like this instead of the express VI. The string array coming from the top is the time string.
-
Exclusive Range for a Case Structure
crossrulz replied to asbo's topic in LabVIEW Feature Suggestions
QUOTE (asbo @ Apr 24 2009, 11:35 AM) You mean like this: Already in there. Darren had a nugget about these case structures here. Check it out. There's lots of good info in it. EDIT: I just figured out that you didn't want to include the 10 in that case :headbang: . That would be interesting. But the case structure can't handle floating points, so therefore you would have to use "1..9". -
Move your wait from the case structure to the while loop and change the wait time to 250ms. This will cause you to wait 250ms before even checking the COM port. As for appealing to the eye, I recommend changing your graph into a chart. A history will be available then. Also spend some time cleaning up your code. I had to spend time cleaning it up just to possibly understand what the code was doing. Here's what I did with it:
-
Fundamental Exam Confusing Questions - please post
crossrulz replied to Minh Pham's topic in Certification and Training
I took the CLAD at the Cincinnati Developer Education Day yesterday. The exam was a scan tron. Anyways, the practice exam on the NI site was very helpful. Eleven of the forty questions on my exam were straight from the practice exam. There's two questions I probably would have missed if I hadn't done the practice exam. -
QUOTE (Cat @ Apr 24 2009, 08:12 AM) ditto. But I found it on you tube awhile back (I'm assuming I'm thinking of the right video). Also hilarious is the engineer's guide to cats. Even my wife liked that one.
-
QUOTE (neBulus @ Apr 22 2009, 04:47 PM) Dude, I have done this operation (index and multiply) so many times and not once did I even think of the Multiply Array. That will make it better.
-
QUOTE (bradjb911 @ Apr 22 2009, 03:28 PM) Reshape array as shown below. I already tried the code and it works fine. In fact, I've been thinking of making this very function for my user library. http://lavag.org/old_files/monthly_04_2009/post-11268-1240432043.png' target="_blank">
-
Fundamental Exam Confusing Questions - please post
crossrulz replied to Minh Pham's topic in Certification and Training
QUOTE (Chr1sG @ Apr 21 2009, 07:56 PM) Yes, you are being too literal. I get in trouble for that too. And my honest opinion is that they are asking if the array elements are sorted. If I am correct about this, then array elements are not always ordered -
QUOTE (TobyD @ Apr 21 2009, 11:05 AM) :worship: And here people thought I was the big geek in high school when I programed my TI-82 to use unreal numbers.
-
Fundamental Exam Confusing Questions - please post
crossrulz replied to Minh Pham's topic in Certification and Training
QUOTE (Chr1sG @ Apr 21 2009, 12:44 AM) I'm not confused at this question at all other than what exactly do they mean in statement B. This is a very common question format in the US for "standardized testing". Maybe those of you who are not from the US just are not used to it. Which of the following is false? A. true B. true C. true D. Statements A, B, and C are all true In this case, D is not being checked for a false. It is a cheap way out of having three true statements and then still having a correct answer. Misleading? Heck yeah! But once you get used to them, it's not really that bad. You can thank the great US education system for this mess. -
QUOTE (ShaunR @ Apr 16 2009, 04:11 PM) You can get the activation codes over email from another computer. I've done the exact same thing and have the codes within an hour, usually 10 minutes.
-
QUOTE (mesmith @ Apr 14 2009, 04:40 PM) Yeah, I haven't been around nearly as long as most of you. :worship: At least I know what a slide rule is! As far as style being developed over time - as I look at my code from 2 years ago, I want to gouge me eyes out.
-
QUOTE (Darren @ Apr 14 2009, 03:16 PM) Thanks for that info, Darren. I'm glad to hear that NI is at least trying to be a good example. I only complained because I see people all the time say "NI VIs look like this" and then they seem confused when they get in trouble in the exams for their style. They see a double standard. And I fully understand the old code thing. I recently inherited code from way back and the style was horrid. Were people just trying to stuff their code into as small of a screen as possible to save memory or something?
-
QUOTE (jzoller @ Apr 14 2009, 01:15 PM) My point exactly.
-
QUOTE (BenD @ Apr 13 2009, 02:56 PM) Yeah, have you ever noticed how NI folks don't have to follow the same style guidelines as us? For the CLD, we have to keep everything easy to read, wires straight, etc. I open up an NI VI and there's wires going everywhere and you can't tell what wire is connected to what terminal. If they expect us to write a certain way, they should be showing it at least in the CLAD exam.
-
I remember my CLAD exam had some really iffy questions. I barely passed. I'm up for renewal next Wednesday. I think I know my stuff a lot better this time around, but I'm still worried about stupid questions like these.
-
QUOTE (djolivet @ Apr 13 2009, 09:15 AM) That's an interesting idea. I'll have to look into that.
-
Our company uses TestStand quite extensively. We write quick driver VIs and then sequence them in TestStand. Our main motivation is that if we have any little error, we have to freeze the configuration (no hardware changes, no more code runs, etc.). This is a NASA rule. Anyways, if we have any errors at all, TestStand automatically will handle it. That is one less thing we have to worry about. But my main peev with TestStand is that you cannot create an executable. All of your LabVIEW code (and LabVIEW itself) has to be there on the test station and any fool can come and change code on us. I plan on trying out a homemade test executive next time I get to create a test station for this exact reason.
-
Agreed that this is poorly written. But I think what they are looking for is the result after the loop is finished (final output). And also keep in mind that they want the "best possible answer". Well, then you are getting subjective based on your point of view on what they are asking.
-
I admit that I had to dig through my Intermediate I book for this. Couldn't find it in the book, but it sort of came back to me. When creating your run-time menu, put in an underscore before the letter that you want to be the "shortcut". See below. In this case, if I hit "Alt+B" and then "x", my custom "exit" menu will trigger an event. Please notice that even if I didn't have my exit under "blah", the "Alt+B" would not trigger an event. I had to actually click on it to trigger an event.
-
jdunham hit it on the head. The "Decimal String to Number" will only do integers. The "Fract/Exp String to Number" will convert to a floating point.
-
I will be at DevDays in Portland and Seattle next week
crossrulz replied to Aristos Queue's topic in LAVA Lounge
I'm going to the one in Cincinnati. Maybe you can come do the LV Design Pattern Class over here? Sort of a side note, is there a place where we can get the seminar contents? For instance, the Intermediate track in Cincy has "Putting LabVIEW File I/O to the Test". What exactly is that going to be about? Two hours of showing the LV file I/O is just as fast a C? Anyways, the recert for the CLAD is the main reason I'm going. I think I'm going to try to hit the CLD prep course too.