07-11-2024 01:10 AM
Hi,
Thanks for your reply.
I did not intentionally use an orange wire connection. So, if you don't mind, could you please share what Orange connections indicate?
Kind regards
Hasham
07-11-2024 02:34 AM
@Hasham622x wrote:
I did not intentionally use an orange wire connection. So, if you don't mind, could you please share what Orange connections indicate?
Did you do any LabVIEW basics courses until now?
Do you know what the wire colors indicate (blue, orange, green, pink, and so on)? This is FUNDAMENTAL LabVIEW knowledge…
Orange wires indicate floating point datatypes, but in this data conversion we ALWAYS explained how to handle blue integer datatypes…
07-11-2024 10:42 AM
Also a "value(sgnl)" property makes no sense whatsoever here. You really (really!!!) need to learn the very basics before jumping into the deep end.
Incrementing is done with integers using shift registers and linked tunnels, not with property nodes! Knowing the difference between orange and blue is very basic.
Your shift register at the bottom still makes no sense, because you never use the output. All it does is waste memory!
If you've done all the tutorials and this is still very difficult for you, maybe programming is not your thing.
07-11-2024 07:43 PM
Hi ,
Thanks for your reply and for your guidance. I correct the code but still it is giving wrong data for reference I also attached excel sheet pic which shows wrong data and only 8 columns as I should get 16 columns of array. If you don't mind, could you please guide me how I could correct this error so my code could work in right direction.
Once again thank you for your guidance.
Kind regards
Hasham
07-11-2024 07:49 PM
Hi,
Thanks for your reply. you are right I am lacking in basics of LV due to that I am again and again stucked in these types of mistakes but by these mistakes I am learning, and I am happy you are pointing my mistakes and guide me to do code in right direction. I correct that mistake and still getting wrong data and only 8 columns array as I should get 16 columns-based array so if you don't mind could you please guide me.
Kind regards
Hasham
07-11-2024 07:51 PM
and Value and value signal as property node I introduced within conditional loop so I could get number of Iterations at the end of code.
07-12-2024 01:29 AM - edited 07-12-2024 01:29 AM
Hi Hasham,
@Hasham622x wrote:
Thanks for your reply. you are right I am lacking in basics of LV due to that I am again and again stucked in these types of mistakes but by these mistakes I am learning,
As you don't apply our suggestions and still present the same buggy code again and again we get the impression you DON'T learn from your mistakes!
@Hasham622x wrote:
I correct that mistake and still getting wrong data and only 8 columns array as I should get 16 columns-based array so if you don't mind could you please guide me.
Because you didn't correct your mistake (completely)!
You STILL use the wrong datatype in the conversion function AS CAN BE SEEN by the coercion dot at the "channel data" array indicator!!! Set the correct datatype for the unflatten function…
Why is your block diagram STILL so large and unorganized?
Why do you STILL use those property nodes for the counter?
Please learn from this:
07-12-2024 01:37 AM
@Hasham622x wrote:
and Value and value signal as property node I introduced within conditional loop so I could get number of Iterations at the end of code.
That statement makes absolutely no sense.
Do you even know the difference between a value and value(sgnl) property?
There is no such thing as a "conditional loop"
Giving up helping you because you constantly ignore all our suggestions.
07-14-2024 06:55 AM
Hi,
Thanks for sharing the example. now the code is running and saving data in the right format.
Once again thanking you for your guidance and suggestions .
Kind regards
Hasham
07-14-2024 09:54 AM
Your code is still a horrible hairball full of unnecessary code and way too many wire bends.