Any one  please correct  this code it is not giving the result as expected.

class image {
     public int[][] data;
     public int rows;
     public int columns;
public class BlurImage {
public int function1(image i1,int k,int j,int rad)
               int sum=0;
               int count=0;
               int R=0,G=0,B=0;
               String s=new String();
               for(int x=k-rad;x<=k+rad;x++)
                    if(x<0 || x>=i1.rows)
                         continue;
for(int y=j-rad;y<=j+rad;y++)
                         if(y<0 || y>=i1.columns)
                              continue;
s=Integer.toHexString(i1.data[x][y]).substring(4,6);
                         B=B+Integer.valueOf(s, 16).intValue();
                         s=Integer.toHexString(i1.data[x][y]).substring(2,4);
                         G=G+Integer.valueOf(s, 16).intValue();
                         s=Integer.toHexString(i1.data[x][y]).substring(0,2);
                         R=R+Integer.valueOf(s, 16).intValue();
count++;
               R=R/count;
               G=G/count;
               B=B/count;
               System.out.println(" ");
               String s1=new String();
               s1=Integer.toHexString(R).concat(Integer.toHexString(G));
               s1=s1.concat(Integer.toHexString(B));
               System.out.println(Integer.valueOf(s1, 16).intValue()+" ");
               return Integer.valueOf(s1, 16).intValue();
public image blur_image(image i, int radius) {
          //Write your code here
          if(i.rows<radius || i.columns<radius)
               return null;
          image i1 = new image();
          i1.rows=i.rows;
          i1.columns=i.columns;
          i1.data=new int[i.rows+1][i.columns+1];
          for (int k = 0; k < i.rows; k++)
          for (int j = 0; j < i.columns; j++)
                    if(i.data[k][j]>0xFFFFFF)
                         return null;
                    i1.data[k][j]=(int)function1(i,k,j,radius);
          return i1;
public static void main(String[] args) {
//TestCase 1
try {
image i = new image();
i.rows = 5;
i.columns = 3;
i.data = new int[][]{{6, 12, 18}, {5, 11, 17}, {4, 10, 16}, {3, 9, 15}, {2, 8, 14}};
BlurImage obj = new BlurImage();
image res = obj.blur_image(i, 2);
System.out.println("TestCase 1");
if (res != null) {
for (int k = 0; k < i.rows; k++) {
System.out.println();
for (int j = 0; j < i.columns; j++) {
System.out.print(res.data[k][j] + ",");
} else
System.out.println("NULL");
catch (Exception e) {
               e.printStackTrace();
//TestCase 2
try {
image i = new image();
i.rows = 3;
i.columns = 5;
i.data = new int[][]{{0x5a0060, 0x6a0050, 0x6a0050, 0x6a0050, 0x7f0038},
{0x5a0060, 0x6a0050, 0x6a0050, 0x6a0050, 0x7f0038},
{0x5a0060, 0x6a0050, 0x6a0050, 0x6a0050, 0x7f0038}};
BlurImage obj = new BlurImage();
image res = obj.blur_image(i, 1);
System.out.println("\nTestCase 2");
if (res != null) {
for (int k = 0; k < i.rows; k++) {
System.out.println();
for (int j = 0; j < i.columns; j++) {
System.out.print(Integer.toHexString(res.data[k][j])+ ",");
} else
System.out.println("NULL");
catch (Exception e) {
e.printStackTrace();
It should give the output as:------
test case 1:-
[ 11, 11, 11 ]
[ 10, 10, 10 ]
output.data = [ 10, 10, 10 ]
[ 9,    9,   9  ]
[ 9,    9,   9  ]
test case 2:-
[ 0x620058, 0x640055, 0x6a0050, 0x710048, 0x740044 ]
output.data = [ 0x620058, 0x640055, 0x6a0050, 0x710048, 0x740044 ]
[ 0x620058, 0x640055, 0x6a0050, 0x710048, 0x740044 ]

public class Test
     public static void main(String args[])
          throws Exception
          System.out.println("[ 10, 10, 10 ]");
}I'll let you customize the above code for test case 2.
There is not a single comment in the code. We have no idea what the code is supposed to do. We have no idea what you think is wrong. Therefore the above solution is the best we can provide.

Similar Messages

  • Field"Code group" is not in the result for report CRM_SRV_REPORT

    Hi Guys,
    For the tx CRM_SRV_REPORT - Service Process Monitor, the field "Code group" is not in the standar result, but, is in the initial screen for filter selection.
    This field is not available in the layout modification.
    How can I add this field to the layout of the result list?
    Regards,
    Lyda

    Hi Lyda,
    Additional field cannot be added in the layout of the result list.
    If you will observe the code of the report CRM_TSRV_REPORT, in the field catalog, there is not Code, code group etc., hence it is not seen in the layout.
    Since it is a std report it cannot be modified, either u can create a Z report by copying this or u can raise an OSS message for this.
    Regards,
    Shalini Chauhan

  • HI it is related to file interface ,any one please send related code to me.

    now am sending total object ...
    1.1.     Related Business Process Information
    Vendor invoices enter DISCO System electronically and then either go through the 2 -way match or 3-way match process. Since DISCO System does not handle the actual payment processing, the invoices with successful match will be ready to transfer to Enterprise SAP to generate payments.
    The purpose of this interface is to detail the requirements of sending vendor open invoices to Enterprise SAP.  Payments are then processed based on the approved invoices that transfer over from DISCO.
    1.2.     General Description of Functionality
    All Disco approved vendor invoices will be mapped into this interfaceIFIC1001 (Interface  Vendor Invoices to Enterprise SAP) (FI001 Incoming AP Invoices to TLand). This outbound file is a flat file and the format is in TXT. The file name will be load_payable_1516.yyymmddhhmmss.txt (replacing yyyymmddhhmmss with date and time).  This is a nightly interface from DISCO to Enterprise SAP via FTP shuttle.
    Business Requirements:
    Enterprise SAP specific fields for interface purposes:
    •     Company Code
    •     Business Area
    •     GL Account
    •     Profit Center
    •     Cost Center
    •     WBS
    •     MPM Issue
    •     Destination Geography
    •     Distribution Channel
    •     COPA customer
    •     Tax Code
    2.     Functional Specification Details
    2.1.     Detailed Functional Requirements
    2.1.1.     Functional Step 1
    •     Read data in table BSIK
    o     If data in table then go to 2.1.3 Functional Step 3
    o     If no data in table then proceed to 2.1.2 Functional Step 2
    2.1.2     Functional Step 2
    Notification message send to IT Support and AP Account when BSIK is empty. Then end the program.
    Error Message
    Empty File no FTP Transfer
    2.1.3    Functional Step 3
    Create Control Header record when BSIK has data.
    •     The Control Header Record is the first record in the interface file. 
    •     Only one Control Record is required in each file. 
    •     Maximum number of 8000 lines per interface file. 
    •     Several interface files will be created if there are more than 8000 lines, however, no document should ever be split between 2 files, only whole document processing.
    2.1.4   Functional Step 4 
    Create Pay Header
    •     Use the following fields from BSIK to map the Pay Header data in the interface file.
                        Company code               BSIK-BUKRS
                        Vendor                     BSIK-LIFNR
                        Fiscal year                            BSIK-GJAHR
                        Document #               BSIK-BELNR
                        Document Date               BSIK-BLDAT
                        Currency                            BSIK-WAERS
                        Amount in LC (local currency)     BSIK-DMBTR
                        Payment Terms               BSIK-ZTERM
                        Reference                                         BSIK-XBLNR
                Debit/Credit Indicator                  BSIK-SHKZG
                Business Area               BSIK-GSBER
    •     No more than 950 lines per header, if lines exceed 950 then need to create a new header, ensuring that the document is fully balanced (Debits = Credits)
    o     If the value of BSIK- SHKZG = ‘H’ then
    &#61607;     Map ‘-’ to the subfield SIGN of the Amount_ Document _T field
    &#61607;     Assign ‘C’ to the subfield DRCR of the Amount_ Document _T field
    o     If the value of BSIK- SHKZG = ‘S’ then
    &#61607;     Map ‘+’ to the subfield SIGN of the Amount_ Document _T field
    &#61607;     Assign ‘D’ to the subfield DRCR of the Amount_ Document _T field
    o     Save the total amount of each invoice in credit and debit separately.  This data will need to map into the Control Trailer Record (see 5.5)
    Create Pay Line Record
    •     Read following fields from BSIK and use as input fields for table BSEG
    Company code               BSIK-BUKRS
    Document #               BSIK-BELNR
    Fiscal year                       BSIK-GJAHR
    •     When BSEG-LIFNR &#8800; BSIK-LIFNR; Group details by  Document number (BSEG-BELNR), Company code (BSEG-BUKRS), Business Area (BSEG-GSBER), Profit Center (BSEG-PRCTR), Cost Center(BSEG-KOSTL), G/L Account (BSEG-HKONT), Destination Geography (BSEG-ZZDESTGEO), Distribution Channel(BSEG-ZZDIST), MPM (BSEG-ZZISSUE), and COPA Customer (ZZSOLDTO), WBS Element BSEG-PROJK***, Internal Order BSEG-AUFNR, Dr Cr Indicator BSEG- SHKZG
    WBS Element logic – In BSEG-PROJK the WBS Element is stored as 8 digit #, we need to take this number and convert it to the 24 char # (PRPS_POSID), as follows:-
    BSEG-PROJK = PRPS-PSPNR = PRPS-POSID
    e.g.
    BSEG-PROJK = 00000124
    PRPS-PSPNR = 00000124 = PRPS-POSID = HE-000001.04.00001
    In DISCO we are using WBS Elements starting with an Alpha char (HE = Home Entertainment, DI = DIS, AS = ASAP), and in TLand they are using all numeric id’s.
    For the summarization:-
    o     If the WBS element is an Alpha (i.e. DISCO) then get the cost center (PRPS-FKSTL) from the wbs element and summarize by the cost center.
    o     If the WBS element is numeric (TLand) then summarize by the WBS Element.
    •     The fields in BSEG are mapped in the interface as follows:
              MPM Issue                                                 BSEG-ZZISSUE
             Distribution Channel                                     BSEG-ZZDIST
             Sold To Customer (COPA Customer)        BSEG-ZZSOLDTO
              Destination Geography                               BSEG-ZZDEST
              Cost Center                                                 BSEG-KOSTL
              Profit Center                                                BSEG- PRCTR
              Business Area                                             BSEG-GSBER
              G/L Account                                                BSEG-HKONT
              Amount in Local Currency (Summarized)   BSEG-DMBTR     
              Dr/Cr indicator                      BSEG-SHKZG
    o      If the value of BSEG-SHKZG = ‘S’ then
    &#61607;     Map ‘+‘ to the subfield SIGN of the Amount_Extended_T field
    &#61607;     Assign ‘D’ to the subfield DRCR of the Amount_Extended_T field
    o     If the value of BSEG- SHKZG = ‘H’ then
    &#61607;     Map ‘-‘ to the subfield SIGN of the Amount_Extended_T field
    &#61607;     Assign ‘C’ to the subfield DRCR of the Amount_Extended_T field
    •     Process all documents from table BSIK
    2.1.5      Functional Step 5
    Create the Control Trailer Record that contains the total credit, total debit, and total line processed as the last record of the interface.
    2.1.6    Functional Step 6
    Send acknowledgment message to IT Support and AP Accountant for successful transmission and save the interface file on the UNIX server.
    Successful FTP Transfer for FI001
    Remote file is load_payable_1516.yyyymmddhhss.txt
    2.1.7   Functional Step 7
    Clearing Transaction – this is to clear table BSIK, document by document. One transaction will be created by each Document number by Vendor. We must only clear the documents which are included in the interface.
    So, in BSIK take the first document (BSIK-BELNR) and use transaction code F-44 in order to clear this document from table BSIK and transfer it to table BSAK. Process all the documents in BSIK, until BSIK is empty.
    SAP Transaction code     F-44 – Clear Vendor
    Screen     Clear Vendor: Header Data
    Sample document(s)     
    SAP system/Client for sample docs     DR1 (030)
    Step 1 – using document # (BSIK_BELNR) as the key, find the following date for the selection screen
    Input Field description     Map from field     Default value (if applicable)     Sample value
    Account     BSIK-LIFNR          100000
    Clearing date     SY_DATUM          10/06/07
    Period          Default from date     1
    Company Code     BSIK-BUKRS          1119
    Currency     BSIK-WAERS          USD
    Under ‘Additional Selection’ select the ‘radio’ button for the Document number.
    Press Enter.
    Step 2 – input following data
    Input Field description     Map from field     Default value (if applicable)     Sample value
    Document Number From     BSIK-BELNR          400000010
    On menu bar select ‘Go to’ and select ‘G/L Item Fast Entry’
    Step 3 – input following data
    Input Field description     Map from field     Default value (if applicable)     Sample value
    PK (Posting key)     BSIK-SHKZG          50
    Account          APCLEARING     APCLEARING
    Amount     BSIK-DMBTR          500.00
    Business Area     BSIK-GSBER          135
    Company Code     BSIK-BUKRS          1119
    Rules for Posting Key
    If BSIK-SHKZG = H then value to enter = 50
    If BSIK-SHKZG = S then value to enter = 40
    Then click ‘Process Open Items’
    Clear any value in field DF05B-PSSKT (Cash Discnt) = make blank
    Amount Entered (RF05A-BETRG) = Assigned (RF05A-NETT)
    SAVE document and new ‘cleared document’ will be assigned.
    Step 4 – This transaction should be repeated until all entries in the interface file are cleared.
    4.1.5.     Interface File Layout mapping
    The interface file contains four types of records:
    •     Control Record: This is the first record on every transmission file.
    o     Only one Control Record is required in each file. 
    o     Maximum number of 8000 lines per interface file. 
    o     Several interface files will be created if there are more than 8000 lines
    •     Pay Header: This equates to BSIK-BUZEI line 001 of each document.
    o     A new header line should be created whenever 950 lines of Pay Line are written
    o     The records of file are broken into several headers if lines are exceeded 950.
    •     Pay Line: Detailed line containing the summarized data (see 2.1.4).
    •     Control Trailer: This contains totals of the whole file. Add this record at the end of file.
    Message was edited by:
            Naveesh surapureddy

    Hi,
    You can use this FM to get the list of all files
    TMP_GUI_DIRECTORY_LIST_FILES
      DATA: TBL_FILES LIKE SDOKPATH OCCURS 10 WITH HEADER LINE,
            TBL_DIRS LIKE SDOKPATH OCCURS 10 WITH HEADER LINE.
      CALL FUNCTION 'TMP_GUI_DIRECTORY_LIST_FILES'
           EXPORTING
                DIRECTORY  = P_DIRECTORY
                FILTER         = 'Test*.Txt'   "<< restricts to only TEXT files begining with Test
           TABLES
                FILE_TABLE = TBL_FILES
                DIR_TABLE  = TBL_DIRS.
    After getting the files in the TBL_FILES... loop the table and read the files with GUI_UPLOAD FM
    Thanks,
    Sankar M

  • Could any one explain me this code pls

      IF sy-subty O print.
        CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
              mode                   = 'BATCH'
             no_dialog              =  'X'
            IMPORTING
                 out_archive_parameters =  arcpar
                 out_parameters         =  pripar
            EXCEPTIONS
                 archive_info_not_found = 1
                 invalid_print_params   = 2
                 invalid_archive_params = 3
                 OTHERS                 = 4
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
        SUBMIT zhterot1 TO SAP-SPOOL
                             WITHOUT SPOOL DYNPRO
                             SPOOL PARAMETERS pripar
                             ARCHIVE PARAMETERS arcpar
    *                   SPOOL PARAMETERS %_print
    *                   ARCHIVE PARAMETERS %_archive
                       WITH pchplvar        =   pchplvar
                       WITH pchotype        =   pchotype
                       WITH pchobjid        IN  pchobji3
                       WITH pchseark        =   pchseark
                       WITH pchobeg         =   pchobeg
    *                    with PCHZTR_D        =   PCHZTR_D
    *                    with PCHZTR_M        =   PCHZTR_M
    *                    with PCHZTR_Y        =   PCHZTR_Y
    *                    with PCHZTR_A        =   PCHZTR_A
    *                    with PCHZTR_P        =   PCHZTR_P
    *                    with PCHZTR_F        =   PCHZTR_F
                       WITH pchbegda        =   pchbegda
                       WITH pchendda        =   pchendda
                       WITH pchwegid        =   pchwegid
                       WITH kurs            =   kurs
                       WITH kurst           =   kurst
                       WITH kugrp           =   kugrp
                       WITH pchobji2        IN  pchobji2
                       WITH expand          =   expand
                       WITH  s_shwfld       IN  s_shwfld
                       AND RETURN
      ELSE.
        SUBMIT zhterot1  WITH pchplvar        =   pchplvar
                          WITH pchotype        =   pchotype
                          WITH pchobjid        IN  pchobji3
                          WITH pchseark        =   pchseark
                          WITH pchobeg         =   pchobeg
    *                    with PCHZTR_D        =   PCHZTR_D
    *                    with PCHZTR_M        =   PCHZTR_M
    *                    with PCHZTR_Y        =   PCHZTR_Y
    *                    with PCHZTR_A        =   PCHZTR_A
    *                    with PCHZTR_P        =   PCHZTR_P
    *                    with PCHZTR_F        =   PCHZTR_F
                          WITH pchbegda        =   pchbegda
                          WITH pchendda        =   pchendda
                          WITH pchwegid        =   pchwegid
                          WITH kurs            =   kurs
                          WITH kurst           =   kurst
                          WITH kugrp           =   kugrp
                          WITH pchobji2        IN  pchobji2
                          WITH expand          =   expand
                          WITH  s_shwfld       IN  s_shwfld
                          AND RETURN
      ENDIF.
    In the above code the Pirnt is having the Default '02'
    Now when we place 0 comparision it is going to validate by converting into binary mode ...
    So what is expecting is to
    when the condition will come true?
    what is the use of submit program name calling those spool ?
    Could any one having any idea pls revert back asap!
    Regards
    Sas

    Hi Friend,
    The operator O is a byte logical opertaor, it checks after converting into bit.
    In your case if SY-SUBTY field contains value 0 or 2 will be true.
    After that it is taking the current client's printer setting and other parameters, which is used to pass in submit program.The submit program having some output which is generating the spool.
    Hope it will help you.
    Regards
    Krishnendu

  • What recordset now called can somebody please correct this code? MIchael Horton

    Private Sub ShowRecord_Click()
    Dim rst As DAO.Recordset
    Set rst = [Forms]![Assets].RecordsetClone
    rst.FindFirst "InvestID=" & List2
    [Forms]![Assets].Bookmark = rst.Bookmark
    DoCmd.Close acForm, "GoToRecordDialog"
    End Sub

    You can cater for Nulls by executing the code conditionally.  Also it's advisable to examine the NoMatch property before synchronizing the bookmarks, e.g.
    Const MESSAGETEXT1 = "No asset selected."
    Const MESSAGETEXT2 = "No matching record found."
    Dim frm as Form
    Set frm = Forms("Assets")
    If Not IsNull(Me.List2) Then
       With frm.RecordsetClone
           .FindFirst "InvestID = " & Me.List2
           If Not .NoMatch Then
               frm.Bookmark = .Bookmark
               DoCmd.Close acForm, Me.Name
           Else
               MsgBox MESSAGETEXT2, vbInformation, "Warning"
           End if
        End With
    Else
        MsgBox MESSAGETEXT1, vbExclamation, "Invalid Operation"
    End If
    This does assume of course that the list box's bound column is that containing the InvestID values.
    PS:  It also assumes that the list box is not a multi-select control.
    Ken Sheridan, Stafford, England

  • What is POM / Maven / Ant / Apache Continuum /  any one worked on this ?

    What is POM / Maven / Ant / Apache Continuum / any one worked on this ?
    Can someone provide me the basic understanding of all this.
    the other thing is SOA
    i am going to work on all this.got many links
    but nowhere one line basic explanation got so that i can undersatnd what is the primary role of all this.
    thenit will be more easier to explore .
    thanks
    vijendra

    Hi Harish,
    for concatenation in BI, define one more infoobject with size long enough to contain the concatenation of those fields. then in the transformation rules connect those 3 fields to this new infoobject also. then double click on its rule, a screen will pop up where u can define the rule. in that screen select 'Routine' in the rule type, a window will open where u can write the routine for concatenation. they have provided the spaces where to define local data, where to write the code and where the result.
    in declaration area,  define a local variable in which u'll take the concatenated text.
    in code area write the code like:
    CONCATENATE SOURCE_FIELDS-<field1> SOURCE_FIELDS-<field2> SOURCE_FIELDS-<field3> INTO <local_var>.
    then under result value assign RESULT = <local_var>.
    Check & save the code, go back and transfer this rule in ur transformation rules. now do the extraction.
    hope it works and solves your problem
    Regards
    Vaibhav

  • My music library seems corrupted. Nearly every song (431 albums) displays "the song ... could not be used because the original file cannot be found". Is there any way to correct this? Please help, thanks, Kelly

    Almost my entire itunes music library seems corrupted. Nearly every song (431 albums) displys "the song ...  cannot be used because the original file cannot be found". Is there any way to correct this? Please help!
    thanks,
    kelly61

    Select one of the songs in question and right click, then select "Get Info". On the main dialog page you should see where iTunes thinks the file resides. Then use Windows Explorer to see if the file is actually there. If not, find out where your music is stored.If there is not a correlation between iTunes and reality, go into iTunes and delete all of the files which are not found.  Then, in iTunes, select File->Add Folder to Library and select where the music is stored. iTunes will re-add all of the music into your library.

  • HT4436 I both have iCloud accounts and would like to share photo's etc. Can any one please advise if this is possible and how to do it?

    My wife and I both have iCloud accounts and would like to share photo's etc. Can any one please advise if this is possible and how to do it?      
    I have a Macbook-pro and Ipad, my wife has a much loved ipad.

    It's all described in iCloud Help here: http://help.apple.com/icloud/#mmc0cd7e99

  • I have buy 4s it's unlocked and its working with different carriers in Bahrain but in Pakistan I try to use different carriers's sims but its showing sim is not valid , not compatible? any one please help me out this

    I have buy 4s it's unlocked and its working ok with different carriers in Bahrain, but in Pakistan I try to use different carriers's sims but its showing sim is not valid , not compatible? any one please help me out this?

    Try restoring the iPhone to factory settings. If you are having difficult restoring, put the iPhone into Recovery Mode and see if that then works:
    http://support.apple.com/kb/ht1808
    If not, or if a restore to factory settings does not fix the problem, then your iPhone may have a hardware problem. You can only get the iPhone serviced by Apple in Canada, so you will have to take the iPhone there or send it to someone you know in Canada who can get the iPhone serviced and send it back to you. The only option for getting service in Pakistan would be to pay some unauthorized repair shop to attempt a repair, after which Apple will no longer provide any service even in Canada.
    Regards.

  • I bought CS6 creative suite. As of now i need to work each application in separate separate system. Can any one please help me how to solve this problem.

    I bought CS6 creative suite. As of now i need to work each application in separate separate system. Can any one please help me how to solve this problem.
    I saw the below quote on Adobe forum
    "You may install software on up to two computers. These two computers can be Windows, Mac OS, or one each."
    If i install each application in single single system the system count is more than two. In this case, are we have any license issue? Please advice how the problem will solve?
    If possible please send the advise to my mail id: <Removed by Moderator>
    Thanks
    Uvaraj S

    I already answered that.  If you purchased a Suite then you can only install and activate it on two machines.  Even if you only insdtall one of the applications of that suite, it counts as one activation of the suite.  You cannot take the six or seven different applications that might be in a suite and install and activate them in six or seven different machines... only two machines.
    If your scenario will allow for it, one thing you can do is install the programs on all the different machines and only activate two of the machines at any given time.  If you need to activate a program on a third machine then you need to deactivate on one of the currently activate machines first so that you have an open activation to use again.  I do not remember if there is a limit to the total number of activations you can process for the life of the software.

  • On my iphone 5 , i m facing slow wifi issue. Ios 6.0.2 didnt resloved it.any one please told me ios 6.1 fixed this issue or not b/c i m right now not in a mood to install the ios 6 .

    On my iphone 5 , i m facing slow wifi issue. Ios 6.0.2 didnt resloved it.any one please told me ios 6.1 fixed this issue or not b/c i m right now not in a mood to install the ios 6 .

    It seems that people experience slow wifi on iphone with IOS 6 under slightly different circumstances.
    Some have slow/choppy video streaming, some have problems with large dropbox files, some with app store and some with podcasts.
    Which is your problem AdeelRasheed?
    Me personally, I have download speed when on wifi.
    But only when downloading podcasts...
    Running 6.0.1 or 6.1 on iPhone 5, iPhone 4 and iPad 2.
    On WIFI I can download a 45 mb app from the appstore in less than a minute. I can stream Youtube and Netflix with no problems. Internet browsing - no problems.
    But downloading podcasts with Instacast 3, Downcast or the Apple Podcast app happens at a rate of 20-80 kb/s when on WIFI. As soon as I switch to 3g ( 4g/LTE is not yet available from my local provider) my download speed goes to between 300kb/s and 2 mb/s.
    Anyone else have this problem?

  • HT1338 Update bundle just released for Aperture 3.4.2, Safari 6.0.2, and iPhoto 9.4.2 will not install.  Keep getting error "The operation couldn't be completed. (NSURLErrorDomain error -3001.)(102)"  Any one else having this issue?  Please help.

    Update bundle just released for Aperture 3.4.2, Safari 6.0.2, and iPhoto 9.4.2 will not install.  Keep getting error "The operation couldn't be completed. (NSURLErrorDomain error -3001.)(102)"  Any one else having this issue?  Please help.

    Hi there!
    Yes, same problem too; I've already sent an email to apple support and just received a very vague and unpractical response with "call apple support in your country" as main advice. I've obviously emailed back stating that I need a clearer response and I don not have any intention to spend money calling for support when updates is a free tool. I do also believe this is a probem generated on Apple's end, I just wish they learned to say "sorry, it's us;  working on it!"
    Message was edited by: MacLuc

  • I am using systec usbmodule1 to send and receive CAN messages , is any one have tried this in labview?, if yes can you send me the code thanks

    i am using systec usbmodule1 to send and receive CAN messages , is any one have tried this in labview?, if yes can you send me the code
    thanks
    Solved!
    Go to Solution.

    Hey,
     All of our CAN drivers have been written for National Instruments' CAN hardware (referenced here : http://digital.ni.com/public.nsf/allkb/E2C6ED025C7​98C5586256F4E00520448 ). Thus, you will have to code all your communication manually, unless Systec provides a LabVIEW driver. There might be various dll files that Systec provides for communication, which you will be able to access through LabVIEW. Take a look at the Call Library Function Node, which can be found from the Functions Palette under Connectivity -> Libraries & Executables. Here you can call a dll file, and also the individual functions within that dll.
    I would suggest posting your question either to the LabVIEW forum, as previously mentioned, or to the CAN forum found here : http://forums.ni.com/ni/board?board.id=30
    Justin E
    National Instruments R&D

  • My iphone 5 is problem facing like that. when i switch off my iphone5 then plugh for charge with data cable or charger adapder or only data cable with no power connect phone is starting why? means on my phone Why? any one can explane this matter please. s

    my iphone 5 is problem facing like that. when i switch off my iphone5 then plugh for charge with data cable or charger adapder or only data cable with no power connect phone is starting why? means on my phone Why? any one can explane this matter please. switched off my phone but on without power button . what is the problem?
    Thanks
    s.m slim

    all iphone is same like that

  • After installing the safari 5.1.7 update when Im on aol and I go to ebay or certain web sites the sign in area and password area is blacked out? Has any one else had this issue and how to you correct it.

    On May 12th 2012 I updated Safari to 5.1.7 on my imac desktop. I also have snow leopard installed.After doing this update when I am on aol and I go to ebay, amazon and a few other sites the sign in area and the password area are blackened out. You could type in the area but not see what you are doing. Has any one else had this problem? Is there a fix?? I spoke to apple support last week and they dont have a clue on how to fix the issue nor does aol.Please help? Thanks.

    Hi..
    From your Safari menu bar click Safari > Preferences then select the Privacy tab.
    Click:  Remove All Website Data
    Now back to the menu bar, click Safari > Empty Cache
    Quit then relaunch Safari.
    Try one of the sites you had trouble accessing...

Maybe you are looking for

  • BB Desktop Manager will no longer sync with BB Torch

    My Torch will no longer sync with my desktop.   BB Desktop software shows "Connecting " but this message stays on and does not change and it never connects.   Never had any trouble before.  I've reinstalled BB Desktop Manager but still have same issu

  • Cost of good sold (COGS) in planning

    Hi, Can someone please guide me how to estimate COGS for a product? Thank you

  • Problem in creating iview template in EP7.0

    Hi, I getting the below message even after creating the iview template in EP7.0 "No templates to display. You are not assigned to any existing templates." Created through: content Admin --> portal content --> <folder>new --> iview --> seleting "Porta

  • Problem in converting Word Document into PDF after inserting EMF file

    Hi I have VB 6.0 program, which automatically inserts an EMF file in to MS-Word and converts it in to Post Script file and finally to PDF. But the Size of the generated PDF file is too large i.e., 8MB If am inserting an .PNG file in MS-Word and conve

  • Process chains not delivered in BPC 7.5 NW SP4 Version

    Hi Experts, We have installed BPC 7.5 NW SP04 sandbox system and we found that there are two process chains (/CPMB/IMPORT_IOBJ_MASTER, /CPMB/IMPORT_IOBJ_HIER) not delivered with BPC NW 7.5 NW versino which are used for BW Master data imports. Please