Hi, how can i break the value for a row and column once i have converted the image to the array?????​??

Hi, I would like to know how can i break the value for a row and column once i have converted the image to the array. I wanted to make some modification on the element of the array at a certain position. how can i do that?
At the moment (as per attachhment), the value of the new row and column will be inserted by the user. But now, I want to do some coding that will automatically insert the new value of the row and the column ( I will use the formula node for the programming). But the question now, I don't know how to split the row and the column. Is it the value of i in the 'for loop'? I've  tried to link the 'i' to the input of the 'replace subset array icon' , but i'm unable to do it as i got some error.
Please help me!
For your information, I'm using LABView 7.0.

Hi,
Thanks for your reply.Sorry for the confusion.
I manage to change the array element by changing the row and column value. But, what i want is to allow the program to change the array element at a specified row and column value, where the new value is generated automatically by the program.
Atatched is the diagram. I've detailed out the program . you may refer to the comments in the formula node. There are 2 arrays going into the loop. If a >3, then the program will switch to b, where if b =0, then the program will check on the value of the next element which is in the same row with b but in the next column. But if b =45, another set of checking will be done at a dufferent value of row and column.
I hope that I have made the problem clear. Sorry if it is still confusing.
Hope you can help me. Thank you!!!!
Attachments:
arrayrowncolumn2.JPG ‏64 KB

Similar Messages

  • How can I set default values for Allocate Mode in AO config?

    Hi, How can I set default values for allocate mode in AO config. To be specific, in the attached vi, I need to set the Allocate Mode in AO Config to 'Use FIFO Memory (6)' if the value inside my case structure is false and to 'no change (0)' if the value inside the case strusture is true.
    Solved!
    Go to Solution.
    Attachments:
    generateWaveformFIFO.vi ‏15 KB

    Create two constants for the Allocate Mode input (right click > create > constant). Place one in the true case of the case structure, and place the other one in the false case. Wire them to the same tunnel (border of the case structure), then wire the tunnel to the Allocate Mode terminal of the AO Config. I don't have Traditional DAQ installed, but that should do it.
    Misha

  • Help - I have an apple id account, where is my iPod and iPad registered, but also the iPod of my daughter. How can I make an account for my daughter and keep all the apps she has on her iPod?

    Help - I have an apple id account, where is my iPod and iPad registered, but also the iPod of my daughter. How can I make an account for my daughter and keep all the apps she has on her iPod and in her own iTunes?

    Sorry, content bought with one Apple ID cannot be merged or transferred to another Apple ID.

  • HT204053 Hi, how can I set up icloud for my ipad and iphone5? I missed tout he initial setup step and now want to have both the devices under icloud. Please help...thank you!

    Hi, how can I set up icloud for my ipad and iphone5? I missed tout he initial setup step and now want to have both the devices under icloud. Please help...thank you!

    Go to Settings>iCloud and sign in with your Apple ID to create the account.  Then turn on the data you wish to sync with iCloud.  See http://www.apple.com/icloud/setup/ios.html.

  • How can I get null values for the later weeks

    Hi All,
    When I execute this code I get the records till current week.
    How can I display the output so that I get null values for the later weeks. (with the help of v_numOfWeeks variable in the code)
    Thanks,
    Vikram
    DECLARE
       v_query VARCHAR2(4000);
       TYPE ref_cursor IS REF CURSOR;
       v_refcur ref_cursor;
       v_sum NUMBER;
       v_id NUMBER;
       v_name VARCHAR2(1000);
       v_weeknum NUMBER;
       v_pernum NUMBER;
       v_numOfWeeks NUMBER := 5;
    BEGIN
    v_query := ' SELECT SUM(product_bkg), postn_id, postn_tbl.postn_name, b.week_num, b.period_num
                              FROM ops_cv_extract b, (SELECT row_id, desc_text postn_name
                          FROM s_postn) postn_tbl
                          WHERE lvl_6_id = 5767
                          AND fiscal_year = 2008
                          AND b.week_num < 4
                          AND b.period_num = 3
                          AND b.postn_id = TO_NUMBER(postn_tbl.row_id)
                          GROUP BY postn_id, postn_tbl.postn_name, b.week_num, b.period_num
                          ORDER BY  postn_tbl.postn_name, b.week_num';
    OPEN v_refcur FOR v_query;
    LOOP
       FETCH v_refcur INTO v_sum, v_id, v_name, v_weeknum, v_pernum;
       EXIT WHEN v_refcur%notfound;
       dbms_output.put_line('P'|| v_pernum||'W'|| v_weeknum||' '||v_name||' '||v_sum);
    END LOOP;
    END;
    This is the output when I execute this code.
    P3W1 COMM CNTRL ISAM 213 26961.61
    P3W2 COMM CNTRL ISAM 213 12870.4
    P3W3 COMM CNTRL ISAM 213 245.88
    P3W1 COMM CNTRL ISAM 273 72831.2
    P3W2 COMM CNTRL ISAM 273 8739.38
    P3W3 COMM CNTRL ISAM 273 3764.92
    P3W1 COMM CNTRL TAM 213 49844
    P3W2 COMM CNTRL TAM 213 20515.17
    P3W3 COMM CNTRL TAM 213 16167.46
    P3W2 COMM CNTRL TAM 216 12561.4
    P3W3 COMM CNTRL TAM 216 2027.1
    P3W1 COMM CNTRL TAM 273 -3336.71
    P3W2 COMM CNTRL TAM 273 -1376.68
    P3W3 COMM CNTRL TAM 273 19707.42
    P3W1 Damon Walters -609.07
    P3W2 Damon Walters 30030.24
    P3W3 Damon Walters 37475.1
    This is the output I'd like to get
    P3W1 COMM CNTRL ISAM 213 26961.61
    P3W2 COMM CNTRL ISAM 213 12870.4
    P3W3 COMM CNTRL ISAM 213 245.88
    P3W4 COMM CNTRL ISAM 213
    P3W5 COMM CNTRL ISAM 213
    P3W1 COMM CNTRL ISAM 273 72831.2
    P3W2 COMM CNTRL ISAM 273 8739.38
    P3W3 COMM CNTRL ISAM 273 3764.92
    P3W4 COMM CNTRL ISAM 273
    P3W5 COMM CNTRL ISAM 273
    P3W1 COMM CNTRL TAM 213 49844
    P3W2 COMM CNTRL TAM 213 20515.17
    P3W3 COMM CNTRL TAM 213 16167.46
    P3W4 COMM CNTRL TAM 213
    P3W5 COMM CNTRL TAM 213
    P3W1 COMM CNTRL TAM 273 -3336.71
    P3W2 COMM CNTRL TAM 273 -1376.68
    P3W3 COMM CNTRL TAM 273 19707.42
    P3W4 COMM CNTRL TAM 273
    P3W5 COMM CNTRL TAM 273
    P3W1 Damon Walters -609.07
    P3W2 Damon Walters 30030.24
    P3W3 Damon Walters 37475.1
    P3W4 Damon Walters
    P3W5 Damon Walters Edited by: polasa on Oct 28, 2008 6:42 PM

    Sure, in a Single SQL ->
    satyaki>
    satyaki>select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    Elapsed: 00:00:00.01
    satyaki>
    satyaki>
    satyaki>-- Start Of Test Data --
    satyaki>with week_tab
      2  as
      3    (
      4      select 1 period_num, 1 week_num, 10 bkg1 from dual
      5      union all
      6      select 1, 2, 40 from dual
      7      union all
      8      select 1, 3, 30 from dual
      9      union all
    10      select 1, 2, 20 from dual
    11      union all
    12      select 1, 1, 10 from dual
    13      union all
    14      select 1, 1, 20 from dual
    15      union all
    16      select 1, 3, 10 from dual
    17      union all
    18      select 2, 1, 15 from dual
    19      union all
    20      select 2, 2, 20 from dual
    21      union all
    22      select 2, 3, 10 from dual
    23      union all
    24      select 2, 1, 15 from dual
    25      union all
    26      select 2, 2, 30 from dual
    27      union all
    28      select 2, 3, 20 from dual
    29    )
    30  -- End Of Test Data --
    31  select period_num,
    32         week_num,
    33         (
    34            select sum(week_tab.bkg1)
    35            from week_tab
    36            where period_num = m.period_num
    37            and   week_num   = m.week_num
    38            group by week_num, period_num
    39         ) sum_bkg1
    40  from (
    41        select dum.week_num,
    42              wk.period_num
    43        from (
    44                select 1 week_num from dual
    45                union all
    46                select 2 from dual
    47                union all
    48                select 3 from dual
    49                union all
    50                select 4 from dual
    51                union all
    52                select 5 from dual
    53              ) dum ,
    54              (
    55                select distinct period_num
    56                from week_tab
    57          ) wk
    58      ) m;
    PERIOD_NUM   WEEK_NUM   SUM_BKG1
             1          1         40
             1          2         60
             1          3         40
             1          4
             1          5
             2          1         30
             2          2         50
             2          3         30
             2          4
             2          5
    10 rows selected.
    Elapsed: 00:00:00.48
    satyaki>Regards.
    Satyaki De.

  • How can i post a value to an account and intercompany account

    Hi All
    i need to post a value to an account and inter company account in my script logic.
    For Ex:
    captures values:
    profitcentre     interco     account     amount
    12345             defualt      502400     2000
    now i need to post the same amount (2000) to an intercompany profitcentre to balance.
    when i run my logic it should look like this
    Interco    account   amount
    I_12345   502400   -2000
    how can i do the above things.
    thanks

    Hi Satish,
    You can use the *REC statement to post the amount. For example,
    *WHEN PROFITCENTRE
    *IS 12345
       *REC(FACTOR = -1, INTERCO = I_12345)
    *ENDWHEN
    The above code is static and will work only when the profitcentre is 12345.
    You must be having some relation between profitcentre and interco. Leverage on that.
    1. First fetch all the profitcentres.
    2. Fetch the interco based on above profitcentres.
    3. Run the above code for each of the profit centres with the help of a FOR loop.
    Hope this helps.

  • How can I see planned values for services in PS reports?

    Hi experts.
    We are implementing PS for a mining company; in our process, project designers plan materials and services in networks and then get planned values for budget requests.
    The problem I am facing is that I cannot see the planned values from services in the plan values reports. No value is exhibited for version 0 if I plan only services in a network. For materials planning I can visualize planned values normally. The network is not released. On example of planning values report that I am using is s_alr_87013533.
    Does anyone know how to correct this problem with PS configuration?
    Any help is welcome. Thanks!
    Rafael

    for planning services I am assuming that you are using service activity
    check if determine plan cost is set up in the network header
    secondly make sure that the plan costing variant is set up with the valuation variant  to define where to get the plan values from

  • How can I break the password that is locking the volume on my Ipad?

    My daughter locked the volume on her Ipad but doesn't remember the password she used.  I'd like to unlock it, as her volume is TOO loud.  Can anyone help?

    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device: Several Alternative Solutions
    A
    1. iOS- Forgotten passcode or device disabled after entering wrong passcode
    2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    3. Restoring iPod touch after forgotten passcode
    4. What to Do If You've Forgotten Your iPhone's Passcode
    5. iOS- Understanding passcodes
    6. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    7. iOS - Unable to update or restore
    Forgotten Restrictions Passcode Help
                iPad,iPod,iPod Touch Recovery Mode
    You will need to restore your device as New to remove a Restrictions passcode. Go through the normal process to restore your device, but when you see the options to restore as New or from a backup, be sure to choose New.
    You can restore from a backup if you have one from BEFORE you set the restrictions passcode.
    Also, see iTunes- Restoring iOS software.

  • How can you take our money for gifts cards and not fix the problems or offer support AFTER it's paid for?

    I am EXTREAMLY annoyed after a 3 hour run around in trying to use my gift card! I promised some apps to my little kids and mommy is busy trying to figure out why it shows a $25 credit but also says my credit card security code is wrong. It's CORRECT and my credit card shouldn't even be used!! I have been raving about IPAD to my friends and told them the apps were great learning tools for their kids. I even shared mine with my child care provider and she was thinking about getting one for her daycare.... Then showing parents who may like it. I WILL be sharing the lack of support for your gift cards! Perhaps I will just go back to the other learning games for my kids and buy games I can count on. We have Lots of Leap Frog and others and not once have I found such a run around!

    Did you try logging into your iTunes account on your computer rather than on the iPad? It may not make any difference but you don't know until you try.
    One other thought - why dont you restart your iPad and see if that helps. Hold down on the sleep button until the red slider appears and then slide to shut down. hold the sleep button until the Apple logo appears to power up. Let the iPad fully restart and see if you can go into your account in settings and remove the credit cards - see if None shows up in the settings.
    I restarted my iPad yesterday when I was having iTunes store issues and the issues cleared up. It may have been purely coincidental but its worth a try.

  • I change my passcode yesterday and forgot so how can i break the code in iphone 4

    i was using iphone 4 soo yesterday i change my passcode and forgot the code so anyone can help me plz

    ishrath shehzard wrote:
    ... i change my passcode and forgot the code ...
    If you cannot remember the passcode, you will need to Restore the device...
    1)  Connect to iTunes on the computer you usually Sync with and Restore...
    http://support.apple.com/kb/HT1414
    2)  If necessary Place the Device into Recovery mode...
    http://support.apple.com/kb/HT1808
    Note on Recovery Mode.
    You may need to try this More than Once...
    Be sure to Follow ALL the Steps...
    Once you have Recovered your Device...
    Re-Sync your Content or Restore from the most recent Backup...
    Restore from Backup  >  http://support.apple.com/kb/ht1766
    Make sure you have the Latest Version of iTunes (v11) Installed on your computer
    iTunes free download from www.itunes.com/download

  • How can i use different suffix for read-only and read-write?

    I have a directory server with 11.1.1.5,I have created the root dn:o=test.com.cn. This dn is replication enabled and it is the consumer.
    I want to create another suffix:ou=test1,o=test.com.cn and I wish to write some data from own.
    However,when I use dscc to create the suffix,I can not find any entry under the suffix.
    When I use the command:
    ldapsearch -b "ou=test1,o=test.com.cn" -s sub "objectclass=*"
    I get this:ldap_search:no such object
    I can not import any ldif to this suffix.
    I get the error:
    import test1: WARNING: Skipping entry "uid=jwalker, ou=People, ou=test1,o=test.com.cn" which has no parent, ending at line 280 of file "/opt/dsinst/test1.ldif"
    When I use dscc to change the suffix to rootdn,I get the same error too.
    How can i do now?
    Thank u very much.

    There are a few issues here, ie
    "uid=jwalker, ou=People, ou=test1,o=test.com.cn" has no parent.
    Did you create ou=People, ou=test1,o=test.com.cn before you tried to create above dn?
    Also, your suffix naming is very poor and will result in more problems later on especially since you want to create sub suffices.
    you should use the DC notation, ie dc=test,dc=com,dc=cn that way you can easily attach o=test1,dc=test,dc=com,dc=cn
    This way you would be able to keep your separate suffices inside separate database files and you will have less headaches when you try to replicate and do bulk re-initialisations.

  • How to display podcasts as square photo in rows and columns

    iTunes 11!!! Ack. Mostly fine, but totally screwed up using podcasts. That is about half of my iTunes usage. Anyway, I can't get podcasts to view like albums as they did in iTunes 10.7. And I can't get podcasts to group together by ratings. I am willing to go back to 10.7, if there is no solution. Can anyone help??

    I'd like to update this question, but don't see an option to edit the original.
    Can't arrange podcasts according to rating, in iTunes 11!
    I would love to have them in rows/columns, as they were in iTunes 10, as well as arrange them according to ratings.
    Update: I have been on the phone with Apple support for this issue for 3 days, and the solution is not found or known. Hours on the phone, Restarted my whole Mountain Lion from scratch. Now I can see the "list" option in iTunes 11. That's the only change. And we're not done restoring my Macbook to the original. I even had to run out and by a second 1T external hard drive during this process. yuck. Great dedication by support. Seems like a can of worms, that I wish I had not opened. Hopefull......

  • How can I break the tool tips (tip strips) into to seveal lines?

    I use the tip in "Description and tip..." to display tool tips (tooltips, tip strips, help cues, the little yellow strips with helpful information about a control). Some of the help messages are long, but the tips are still displayed on one line. In some cases the whole text can not be read because the tip is wider than the screen. I would like to be able to specify a maximum width of the tip, or to be able to manually insert line breaks.

    Hi Nick
    Actually, I write multiline string up to 256 char long in worpad. Then, I copy and paste into de tip dialog from pop up menu and it works fine.
    Hope it helps.
    Alipio
    "Qod natura non dat, Salmantica non praestat"

  • How can I get latest update for Photoshop Elements 9??  I have been trying for a month and the update download continues to fail.

    Photoshop Elements Update download continues to fail after at least 4 weeks.

    Try downloading the updates from here:
    windows
    Adobe - Photoshop Elements : For Windows
    mac
    Adobe - Photoshop Elements : For Macintosh

  • How can I break the iPhone i lost

    I lost my iPhone 5 and I already erased it, but I want to breake it in orther that no one can use it again. Is that possible?

    No.

Maybe you are looking for

  • Hierarchy on HANA Calculation View with Optional Input Parameters Fails

    Hi, Has anyone succeeded in building a hierarchy on top of a calculation view with optional input parameters, where an input parameter is not filled? The original requirement came from the wish to create a parent child hierarchy on a calculation view

  • Error V0 104 while adding select option on customized screen

    Hi all, I have a screen added on the standard transaction IW21 (with selection screen definition and called like subscreen). On this screen I have some SELECT-OPTIONS and when I press the button of selecting multiple values, I get the following messa

  • JList(Vector) inside JScrollPane vanishes!

    Hi all, I have a problem thats driving me crazy, Im really stumped on this one; Im trying to update the GUI on a packet sniffer I wrote a while ago, I have a GUI class below as part of a larger program, this class containes a JList(Vector) inside a J

  • Database adapter update exception

    I have written BPEL process that polls view for data and sends the data to another database. Till this point it is working good. Then I created partner link to update status of column of base table(XYZ_TABLE) using operation UPDATE has total 90 colum

  • Problem in internal table calculation

    i have internal table values as follows ( for eg.) person          month                  amount1                amount2 A                   jan                     rs.500(1)                       rs.1000 (3) A                  feb