Some problems using some Matlab functions

Hello,
I have some trouble with MathScript when i want to use some MATLAB functions in it such as unique or histc. (i'm using windows 7 and LV2010 SP1)
These functions are theoretically supported by MathScript insofar as they exist in MathScript Documentation but they return an error. This error explains that my matrix sizes are invalid but when we are doing exactly the same process with the same matrix in MATLAB, it ends well.
So I checked the two MATLAB and MathScript documentations in order to see if there is a difference between the same functions. It is proving to be the same functionning in MathScript and in MATLAB so I am a little lost.
In order to show you a concrete example :
If we have a X matrix equals to (77 77; 88 96) and we are doing unique(X). The result is supposed to be (77 88 96) but mathscript returns an error.
On the other hand, if X is not a matrix but a vector, unique ends well but i'm not interested in using some vectors (because it is exactly the same kind of problem with some others functions using only matrix).
I could use a matlab node script but in this project, we would to avoid the use of a Matlab Licence.
Do you have some idea in order to fix this kind of problem
Thanks a lot

Hi,
Currently, the unique(X) in MathScript can accept vector input only. It reports error when X is a matrix. As a workaround, you can use
unique(X(:))
instead.

Similar Messages

  • Some problem using in this function!!!

    Is it valid to write a function like this??
    CREATE OR REPLACE FUNCTION
    dept_dtls(DEPT_ID IN VARCHAR2)
    RETURN record is
    DEPT EMPLOYEE.DEPT_ID%TYPE;
    STATUS RECORD;
    BEGIN
    Select COUNT(DESIGNATION),
    into STATUS
    from EMPLOYEE
    where DEPT=DEPT_ID
    GROUP BY DESIGNATION;
    RETURN STATUS;
    END dept_dtls;

    There are many things that I don't understand here or probably Oracle even can't understand.
    RETURN record
    What is record? WHen yu are taking count(something), it would be a number so, status variable should hold number and so should be of number datatype. By the way, if you had used GROUP BY function, then there is every possibility that this select results in one or more number of records which fails the function with TOO_MANY_RECORDS exception.
    Cheers
    Sarma.

  • HELP!! Problems using some apps??

    Can someone please help?
    Im having a problem using some Apps - mainly Natwest banking and My Fitness Pal both are saying i require internet to use (wifi or 3G)
    I do have BIS on my phone and can acces internet and other apps suck as Facebook, GoogleMaps, Paypal etc etc.
    Is there something different i need to do to use these apps?
    Im using BB Curve 8520 OS 5v
    Thanks

    Did these apps work ok for you in the past?
    On your Manage Connections screen, click on the Services Status. What is the status of the BlackBerry Internet Service?
    Try turning off the Mobile Network at your Manage Connections screen, and using ONLY a WiFi connection and see if that works.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • HT1391 How can I get a full history of our purchases?  We had some problems with some downloads since 5/25/12.We were charged for items that said "Free"? Help

    How can I get a full history of our purchases?  We had some problems with some downloads since 5/25/12.We were charged for items that said "Free"? Help

    iTunes Store menu > View My Account...
    Sign in and select "See All" in Purchase History.
    You can only see them in "batches" of ten. As far as I know there is no way to obtain a comprehensive summary.
    The prices are tabulated in that list. If they were supposed to be free, and they show that you were charged, then click the arrow next to the suspect purchases and click "report a problem".

  • SQL query problem using analytical/report function

    Hello there,
    I am having some problem writing my query. I have this table below:
                  create table t (priority number,
                                  plannedamount number,
                                  availablepieces number,
                                  material_id varchar2(20))
    insert into t values (1, 15, 30, 'A');
    insert into t values (2, 20, 30, 'A');
    insert into t values (3, 5, 30, 'A');
    insert into t values (4, 8, 30, 'A');
    insert into t values (5, 4, 30, 'A');
    insert into t values (1, 2, 10, 'B');     PRIORITY|     PLANNED AMOUNT|AVAILABLE PIECES |     MATERIAL_ID
         1      15     30 A     
         2      20     30 A
         3      5     30 A
         4      8 30 A
         5      4     30 A
         1      2     30 B .
    Each line is a customer order ordering a material. I am grouping by material and ordering it by priority. I want to display a new column called pieces not reserved yet. This column will show that if the order can be fully reserved for that current order ordering by priority.
    If the row can be reserved it will substract and bring it to the next row. If it cannot the pieces not reserved will remain the same.
    I've tried using sum(), lead(), first(), lag(), etc but I still cannot get the correct result.
         PRIORITY|     PLANNED AMOUNT|PIECES NOT RESERVED YET |     MATERIAL_ID
         1      15     30 A     
         2      20     15 A
         3      5     15 A
         4      8     10 A
         5      4     2 A
         1      2     30 B
    Can anyone elaborate or have any hints on what method to use to create this column?
    Thanks. .
    Edited by: 998373 on Apr 5, 2013 11:42 AM
    Edited by: 998373 on Apr 5, 2013 11:43 AM

    From 10.x on
    with t(PRIORITY, PLANNED_AMOUNT,AVAILABLE_PIECES , MATERIAL_ID) as
    select      1, 15, 30, 'A' from dual union all
    select 2, 20, 30, 'A' from dual union all
    select 3, 5, 30, 'A' from dual union all
    select 4, 8, 30, 'A' from dual union all
    select 5, 4, 30, 'A' from dual union all
    select 1, 2, 30, 'B'  from dual
    select
      MATERIAL_ID
    , PRIORITY
    , PLANNED_AMOUNT
    , AVAILABLE_PIECES PIECES_NOT_RESERVED_YET
    from t
    model
    partition by (material_id)
    dimension by (PRIORITY)
    measures (
      PLANNED_AMOUNT
    , AVAILABLE_PIECES
    rules (
    AVAILABLE_PIECES[priority>1] order by priority=
      case when PLANNED_AMOUNT[cv()-1] <= AVAILABLE_PIECES[cv()-1]
           then AVAILABLE_PIECES[cv()-1] - PLANNED_AMOUNT[cv()-1]
           else AVAILABLE_PIECES[cv()-1]
      end
    MATERIAL_ID     PRIORITY     PLANNED_AMOUNT     PIECES_NOT_RESERVED_YET
    A     1     15     30
    A     2     20     15
    A     3     5     15
    A     4     8     10
    A     5     4     2
    B     1     2     30

  • Problems of integrating Matlab functions in Labview

    Hi,
    Does anyone know how to completely integrate Matlab functions into Labview program without a copy of Matlab in the system when I run the entire program?
    Initially I used 'Mathscrip' node but I heard that it doesn't support Matlab toolbox.  Thus, I tried out the other option 'Matlab script' node. This node works well in implementing Matlab functions but it indeed requires Matlab installed in the system. 
    So in other words, how could I realize the full integration(as what Matlab script node achieves.)  without Matlab installed in the system?   
    Cheers,
    Nicholas 

    hi smercurio,
    So you mean that the Matlab script is no longer necessary in my case right?
    Could I just ask my colleague to compile his codes to matlab dll and I use the Call Library Function Node  instead of Matlab script to call it?
    About MCR, is it the correct source at the following link  http://www.mathworks.com/matlabcentral/fileexchange/5268 ?
    Sorry for those basic queries in Matlab as I have very little experience in it. lol... thanks a lot.
    Cheers,
    Nicholas 

  • Problem using SUM standard function  during Field Mapping

    Hi Experts ,
    I am trying to sum all LIFMG 's in in the lineitems of a particular
    header and map this result to Lifmg of the header.(Idoc with multiple headers and line item).I am using SUM standard function.
    Rough Source structure.
    Header1
          vbeln
    ....Lineitem1
          vbeln
          posnr
    ......LIFMG
    ....Lineitem2
            vbeln
            posnr
    ......LIFMG
    Header2
         vbeln
    ....Lineitem1
            vbeln
           posnr
    ......LIFMG
    ....Lineitem2
            vbeln
           posnr
    ......LIFMG
    I am able to find the SUM ...but in the target structure's Header field  I am getting
    repeated value of the corresponding sum in each header ...i.e.
    Header1
    LFIMG-- 100
    LFIMG    100
    Header2
    LFIMG-- 102
    LFIMG    102
    How to get a single value for each .
    Regards,
    Deepak

    Solved Myself ...
    Placed  sum after  if without else ...
    placing it before was causing ...those values to be replicated.

  • Do others have a some problems using Firefox together with Charter? Mine is with my search.

    I have used and enjoyed Firefox for years. I have Charter cable and my homepage is Charter.net. When I try to use the Google search on that homepage screen, the results are terrible, giving me nothing more than Google search box (its entry) and a blank white screen.
    Is there a way I can take care of this problem?
    I don't have this problem when I try using Internet Explorer, but I'd much rather use Firefox. Thanks.

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Problem using some programs

    Some programs that are suppose to be compatible with my mac are popping up as incompatable and have that stop sign on their icon.
    This happened to me more than once already. It first happened when I tried installing starcraft for macbook with the patch and everything. I successfully installed, but I tried to start it, but it had the stop sign on it and a messege popped up saying that the program is not compatable. I uninstaleld and installed again, and after a couple of tries, I got it to work.
    Now I am trying to run PowerLisp 2.02 on my macbook, but the same thing is happening, but this time I can't get it to work. I ignored the problem the first time, but now it's annoying.
    Does anyone know what is going on? And what i can do to get around it?

    When running Windows you must run a virus protection program in Windows. Use Microsoft Security Essentials. It is free and it works very well. http://windows.microsoft.com/en-US/windows/security-essentials-download

  • Some problems with the count function

    Hi Guys,
    I am trying to return following:
    2009 GUESTS NIGHTS between 1 and 5 = 80 guests
    2009 GIESTS NIGHTS between 5 and 10 = 100 guest
    Whe I use the combine with a similar report option (union), I issue the following query:
    SELECT saw_0 saw_0, saw_1 saw_1, saw_2 saw_2, saw_3 saw_3 FROM ((SELECT Resort.Resort saw_0, Time."Year" saw_1, "Non Revenue Facts".Nights saw_2, count(Guests."Guest Name") saw_3 FROM GUEST WHERE "Non Revenue Facts".Nights BETWEEN 1 AND 5 GROUP BY saw_1, saw_2, saw_0) UNION (SELECT Resort.Resort saw_0, Time."Year" saw_1, "Non Revenue Facts".Nights saw_2, count(Guests."Guest Name") saw_3 FROM GUEST WHERE "Non Revenue Facts".Nights BETWEEN 1 AND 5)) t1 GROUP BY saw_1, saw_2, saw_0 , saw_3 ORDER BY saw_0
    The query return just the results for nights between 1 and 5.
    I need two columns showing the count of the guests with nights till 5 and one other column showing the count of the guests with nights from 5 to 10.
    Any help would be really appreciated.
    Regards
    Giuliano

    Sorry I did not get this.
    I should still use the union statement and than build the below function in the nights fields?
    What I am trying to achieve is simply how many guests do i have with at least 1 night and max 5 nights
    and how many guests i have with at least 5 nights and a max of 10 nights.
    I should have 2 columns:
    1 label Nights between 1 and 5
    2 label Nights beween 5 and 10
    the count(guests) column should than show how many guests in the first range and how many in the second.
    Regards
    G.

  • Problem using in download function

    Dear Experts,
    I am using download function to download values from application server to desktop.
    After downloading the output is like the foollowing.
    0    temp     30    bar(kg)
    But now the user requirement is I have to print it like the following.
    0/temp/30/bar(kg)
    I have to delete the space and have to give '/' sign.
    Please help me to fix this.
    Thanks in Advance
    Ansuman Parhi

    Hi,
      THis is a simple conversion.
       First Upload file from application server using dataset concept and Store Internal table of Char field like
       Begin of itab occurs 0,
         Data(200) type c,
       End of itab .
       then Split that into some fields  space
      Loop at itab.
          Split itab-data at  ' ' into  fields,
          Concatenate fields into itab-data seperated by '/'
          Modify Itab.
      endloop.
      Then download this.

  • Memory problem using visa serial functions in my vi

    The last few days i created an application that reads data from one of
    serial ports (contactless card reader). Today i noticed that my
    application had crashed and Windows had displayed a message that my
    system was low on virtual memory. I reset the system and i re-run the
    application, having the task manager opened. I noticed that the memory
    usage of my exe was taking more and more memory (starting from
    21.520KB) as the seconds went by. In 5 minutes my app was using
    25Mbytes! What i do in my application exactly, is opening the serial
    port  then i enter the main while-loop, then every 2 seconds i read
    from the  serial and write them to a tag.
    I have used standard visa serial functions of Labview. When I trace my
    application and simultaneously run TASKManager of windows to see the
    memory, I saw that after running every Visa function memory usage goes
    up!!!
    what must I do? Please help me to overcome this problem.
    Thanks,
    M.Naghipourfar

    Trust me, people use serial communication with LV all the time without losing memory. I can't check the example at the moment, but If it had a problem someone would have caught on to it by now. In any case, even if using the serial VIs causes the memory usage to go up, it shouldn't be dramatic, definitely not enough to crash the application and consume all memory.
    Like I said, post your code (there is an attachment field when you write your message and you can save all your files into a single file by opening the main VI and selecting File>>Save with Options>>Development Distribution) and we will probably be able to find your problem.
    To learn more about LabVIEW, I suggest you try searching this site and google for LabVIEW tutorials. Here and here are a couple you can start with. You can also contact your local NI office and join one of their courses.
    In addition, I suggest you read the LabVIEW style guide and the LabVIEW user manual (Help>>Search the LabVIEW Bookshelf).
    Try to take over the world!

  • Problems using Camera Raw function in Bridge CS5.1

    Hey so I don't know what the heck is going on, but Camera Raw was working perfectly for me when I got this computer. It's a work computer, and all the programs were recently installed. I like using Camera Raw because of the easy basic editing and mass rendering (from .nef to .jpg) because I do a lot of shooting as a journalist.
    Like I said, it was working fine for me the past three weeks. Now I get this error message:
    Camera Raw editing is not enabled
    Camera Raw editing requires that a qualifying product has been launched at least once to enable this feature.
    I just installed the program, alongside PSE 12 Editor, and I have no idea how to fix this. Obviously, I've opened both Bridge and PSE, so I have no idea what I'm supposed to do now.
    Please please help. It's a MAJOR pain in the arse to have to edit every photo manually in PSE.

    You can use PSE with multiple Raw files also but Camera Raw in PSE has very limited options compared to the full ACR and also you can't save as jpeg via PSE.
    But do you have Photoshop CS5 installed because I can't find any info on that in your posts??
    Bridge CS4 was the only version that worked with PS elements (PSE 8??) but after that they discontinued the connection and since then PSE again uses its own organizer. So it is either using PSE for your work or you have to use Photoshop and Bridge.
    Adobe Camera Raw (ACR) is a plugin that comes with Photoshop. But Bridge has the option to also use this same plug in but it uses the PS version itself. If you open a Raw file in Bridge the normal way it opens in ACR via PS.
    If you choose right mouse click menu 'Open in Camera Raw' it uses ACR via Bridge. You can use both ACR at the same time. e.g. open multiple files in Bridge to load them as 'filmstrip mode' in the ACR window. Make your changes and choose 'save image'. While this jobs is running you can't use PS until the saving has finished.
    however if you return to Bridge and select another bunch and open this via 'Open in Camera Raw' the ACR window opens via Bridge. So while the first job is running in the background via PS you can start the second job via Bridge.
    Be sure to have the latest updates and the latest ACR version for Camera Raw (in your case it should be both PS and Bridge CS5.1 and ACR 6.7)
    In PS go to menu Photoshop / About Plug In / Camera Raw and this provides a window with the version of Camera Raw you are using.

  • Problem using setBoundingTheme function

    Hi All,
    I'm having some difficulty using the setBoundingTheme function for zooming into a FOI. I'm using the following javascript to add a FOI to the map (named "mapview"):
    var themeBasedFoi = new MVThemeBasedFOI(id, dataSource);
    themeBasedFoi.setQueryParameters(queryParameter);
    themeBasedFoi.setBoundingTheme(true);
    theme.push(themeBasedFoi);
    mapview.addThemeBasedFOI(themeBasedFoi);
    The FOI is added to the map, however MapViewer does not zoom to this FOI, it simply stays at the current zoom level and does not even recenter. I've also tried using zoomToTheme() and centerToTheme() after the FOI has been added, but these also don't work. No javascript errors are thrown in Internet Explorer or Firefox either.
    This problem is occuring in a development version of an application I'm working on. The current production version uses the exact same code as above, which works correctly. Perhaps I've inadvertantly changed something that this function references? I copied the oraclemaps.js file from the working production version to my development version, however the problem remains. Any suggestions/thoughts on what could be going wrong would be much appreciated.
    Thanks

    Mod_plsql supports bind variables, as do almost all front-end tools that deal with Oracle (and most other databases). I do not code mod pl/sql myself, but others here do, and I see bind variables in their code all the time (if I don't, they hear from me :-)).
    If you pass a bind variable, the quote problem goes away. As far as I know (which is not very far), you should be able to take the string with the quote directly from your input field, bind it to the variable in your query and have no problems.
    I suspect that the reson you are having issues is that you are just gluing strings together to create a sql statement. this is the wrong approach.
    The java term for what you are looking for is prepared statement, I'm not sure what the equivalent is i mod plsql, but that should give you a start.
    John

  • DC creation finished with some problems

    Hello,
    After finish the DC creation below message is getting
    DC Creation finished with some problems
    Reason: Some used DC's not avilable Locally, You Have to sync used DC's for the project.
    and when I open the view implementation many errors in the default methods.
    below is the error log:
    java.lang.Exception: C:\Users\xxxx\.dtc\LocalDevelopment\buildvariant.config is missing
    at com.sap.ide.eclipse.component.core.Util.getBuildVariantDocument(Util.java:205)
    at com.sap.ide.eclipse.component.core.Util.initBuildVariant(Util.java:261)
    at com.sap.ide.eclipse.component.devconf.DevConfManager.getInstalledDevConfs(DevConfManager.java:432)
    at com.sap.ide.eclipse.component.devconf.DevConfManager.getInstalledDevConfs(DevConfManager.java:372)
    at com.sap.ide.eclipse.cbs.activation.internal.ActivationRuntimeDataStorage.setActiveDevelopmentConfiguration(ActivationRuntimeDataStorage.java:225)
    at com.sap.ide.eclipse.cbs.activation.internal.ActivationRuntimeDataStorage.onActiveClientChanged(ActivationRuntimeDataStorage.java:944)
    at com.tssap.dtr.client.lib.vfs.config.impl.Configuration.setActiveClient(Configuration.java:477)
    at com.sap.ide.eclipse.component.wizard.DevConfWizard.updateDTR(DevConfWizard.java:687)
    at com.sap.ide.eclipse.component.wizard.DevConfWizard.addDevConf(DevConfWizard.java:546)
    at com.sap.ide.eclipse.component.wizard.DevConfWizard.access$100(DevConfWizard.java:67)
    at com.sap.ide.eclipse.component.wizard.DevConfWizard$1.run(DevConfWizard.java:348)
    at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
    at com.sap.ide.eclipse.component.wizard.DevConfWizard.performFinish(DevConfWizard.java:346)
    at org.eclipse.jface.wizard.WizardDialog.finishPressed(WizardDialog.java:608)
    at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:321)
    at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.java:423)
    at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:840)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2022)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1729)
    at org.eclipse.jface.window.Window.runEventLoop(Window.java:583)
    at org.eclipse.jface.window.Window.open(Window.java:563)
    at com.sap.ide.eclipse.component.provider.actions.DevConfNewAction.run(DevConfNewAction.java:46)
    at com.tssap.selena.model.extension.action.SelenaActionCollector$GenericElementActionWrapper.run(SelenaActionCollector.java:229)
    at com.tssap.util.ui.menu.MenuFactory$MuSiAction.saveRunAction(MenuFactory.java:1425)
    at com.tssap.util.ui.menu.MenuFactory$MuSiAction.run(MenuFactory.java:1391)
    at com.tssap.util.ui.menu.MenuFactory$DelegateAction.processInternal(MenuFactory.java:616)
    at com.tssap.util.ui.menu.MenuFactory$DelegateAction.access$100(MenuFactory.java:586)
    at com.tssap.util.ui.menu.MenuFactory$DelegateAction$BusyProcessWorker.run(MenuFactory.java:716)
    at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
    at com.tssap.util.ui.menu.MenuFactory$DelegateAction.process(MenuFactory.java:610)
    at com.tssap.util.ui.menu.internal.MenuListenerFactory$ProcessAdapter.widgetSelected(MenuListenerFactory.java:172)
    at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:840)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2022)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1729)
    at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1402)
    at org.eclipse.ui.internal.Workbench.run(Workbench.java:1385)
    at com.tssap.util.startup.WBLauncher.run(WBLauncher.java:79)
    at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:858)
    at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.sap.ide.eclipse.startup.Main.basicRun(Main.java:291)
    at com.sap.ide.eclipse.startup.Main.run(Main.java:789)
    at com.sap.ide.eclipse.startup.Main.main(Main.java:607)
    Thanks
    Polaka

    Hi Polaka,
    the Error clearly tells the root cause...
    Some used DC's not avilable Locally, You Have to sync used DC's for the project.
    This means that the DC for which you have created project structure is now present on your Local client DTR, but the same DC is using some other DCs as dependencies. And these used DC(s) are not available on your Local Client DTR.
    Please perform the below mentioned steps...
    1) The DC for which you are creating the project structure, is having dependecies on other DCs.
    2) Open the public parts of that DC and check the Used DCs that are needed.
    3) You need to create the project structure of those used DCs too from Inactive DCs view.
    4) Also make sure that buildtime depencies are also sychronized from Active DC view.
    If the problem still persists, then i would request you to provide the following details.
    1) Types of the DCs that you are using.
    2) in the CBS web UI,
    -->(http://<host>:<port>/webdynpro/dispatcher/sap.com/tc.CBS.WebUI/WebUI)
    -->Here, find out the build spaces specific to your track inside Buildspaces Table.
    <SID>_<TrackName>_D
    check the Development buildspace of your track whether it is consistent or not?
    3) If the build space is having some broken DCs then provide the Logs of the Build failure on CBS for those broken DCs.
    Regards,
    Shreyas Pandya

Maybe you are looking for