IFort and xcode array visualisation prospects

Hi there,
I'm new to the whole Mac platform, so please be patient! I am trying to use iFort and xcode together to compile a load of Fortran 95/2003 programs I have written for my PhD research. I was previously working on a PC, using Compaq Visual Fortran professional.
With my previous setup, Microsoft visual studio was my IDE, and I was able to visualize arrays during debug by selecting the relevant array and clicking on the array visualizer to display a graphical representation of the array in either 2D or 3D. This was pretty handy, my research involves image processing tasks, which produce many intermediate steps which I do not necessarily want to output to file, but are useful to keep an eye on during debug to check things are processing properly (e.g. applying a sequence of filters and transforms).
Is it possible to do something similar in xcode? What are my options for watching array content during debug, and what are the possibilities for graphical display?
Many thanks
Luke Spadavecchia

xcode just runs the compiler and debugger. Look at your debugger documentation to see if it has visualization options.

Similar Messages

  • Trying to learn Structure and/or Array

    OK here goes my best attempt at an explanation... I been
    through some tutorial on Structures and Arrays and have an ok idea
    of what to do with them. But all the tutorials I went through had
    the variable amounts hard coded in, but I want it to come from a
    database query(s).
    I want to get a mileage total per month per riderId
    tablename: mileageLog
    table fields: ridierId, rideDate, rideDistance
    First I want to query a DB and get all the riderId numbers
    (grouped so I only have one for each). This is no problem.
    <cfquery name="riderIds" datasource="DevKevin">
    SELECT riderId
    FROM mileageLog
    GROUP BY riderId
    </cfquery>
    Now using each riderId, I want to put the results into a
    structure and/or array so that I can then turn around and sort as
    desired.
    I think I need to use a loop - one for each riderId.
    Inside each loop, I would need a second loop running 12 times
    (once for each month)
    The inner loop would run a query like...
    <cfquery name="mileageByMonth" datasource="DevKevin">
    SELECT sum(rideDistance) AS monthTotal
    FROM mileageLog
    WHERE riderId=
    ???? from above somehow
    AND year(rideDate)=#nowYear#
    AND month(rideDate)=#
    ???? loop through 12 months#
    </cfquery>
    I'm so lost

    quote:
    Originally posted by:
    2onboard
    This does indeed return the correct amounts - THANKS
    But how do I utilize them? by that I want to take my results
    and put it into a table that is 14 columns wide.
    Column 1 = the riderID
    Columns 2-13 = the monthly totals
    column 14 = a yearly total
    I also want to be able to sort by any column
    Now it becomes complicated. I'm going to assume that you want
    the current year, not the last 12 months. That means you don't
    necessarily want 14 columns. I also assume that Access's month()
    function returns a number like 4, and not a string like April. I
    don't use Access so I don't actually know.
    Step 1 - Use query of queries and valuelist to get a list of
    distinct month numbers. I'll call this variable abc.
    Step 2 - Build another list of the month names for each of
    those numbers. The function is MonthAsString. I'll call this
    variable months. Then build a third list, the same length, with the
    word integer as each element. I'll call this variable xyz.
    Step 3 - Create a new query. This will have your data in a
    cross tab format for later.
    xTab = QueryNew("Rider,#months#,total",
    "varchar,#xyz#,integer");
    Step 4 - Loop through your original query and use if/else
    logic to populate the xTab query.
    Final Step - Use a flash grid to display your xTab query.
    That will enable you to sort on any column.

  • How to calculate the maximum session for Confernecing and Xcoder on VG

    Hi All
    Please help me to understand the logic and concept that how we can calculate the number of session that we can define for the Conferencing and Xcoder  Configuration on the VG.
    Regards
    Chaman

    Hi Jaime
    Thanks for Reply.
    I created the Dsp profile . According to ISR i configured the Sessions . But i want to know the exact concept how to calcluate and if suppose i want some modification in future according to the conference calls that i want to support how do i calculate??
    dspfarm profile 2 transcode 
    codec g729abr8
    codec g729ar8
    codec g711alaw
    codec g711ulaw
    codec g729r8
    codec g722-64
    maximum sessions 13
    associate application SCCP
    dspfarm profile 1 conference 
    codec g729br8
    codec g729r8
    codec g729abr8
    codec g729ar8
    codec g711alaw
    --More--                            codec g711ulaw
    maximum conference-participants 16
    maximum sessions 3
    associate application SCCP

  • After updating to ML and Xcode 4.5.1, can't compile anything

    Hi, hoping someone here will be able to give me a clue.
    I used to compile a unix program called ffmpeg and about 12 dependencies.  It is somewhat complex, but I have a script for updating the programs.  When Lion came out I had to make some minor changes, including specifying --cc=clang in the ffmpeg configure step.  Now with Mountain Lion and Xcode 4.5.1 I can't compile anything.
    Rather than downloading and installing the command-line tools, which I understand just duplicate what is in Xcode, I added /Applications/Xcode.app/Contents/Developer/usr/bin to my path so that any configuration script would be able to get to the tools.
    Nothing is compiling at all.  Basically the compiler fails some tests in the scripts.  Each program gives different error messages, but it all looks like the compiler is wrong.
    Strangely, when I investigated the compilers in the above directory, I found that gcc (I guess the default) is an alias to llvm-gcc-4.2, in another folder.  But when I just type gcc in a terminal, I get:
    i686-apple-darwin11-llvm-gcc-4.2: no input files
    So it is actually using a different compiler for reasons I don't understand, and I don't know if that is correct behavior, or if it is related to my inability to compile.
    In case it is not obvious, I am just knowledgeable enough to be dangerous with this stuff.
    Thanks,
    Jim

    Gee, you mean you can't believe everything you read on the internet?? ;-)
    Well you're right.  After installing the tools, all the programs appeared to compile fine . . . except ffmpeg.  The terminal response at the end is
    gcc is unable to create an executable file.
    If gcc is a cross-compiler, use the --enable-cross-compile option.
    Only do this if you know what cross compiling means.
    C compiler test failed.
    The config.log starts with the configure command:
    ./configure --prefix=/Volumes/Ramdisk/sw --enable-nonfree --enable-gpl --enable-version3 --arch=x86_64 --enable-hardcoded-tables --enable-libvo-aacenc --enable-libmp3lame --enable-libx264 --enable-libvorbis --enable-libgsm --enable-avfilter --enable-filters --enable-libtheora --enable-libspeex --disable-indevs --disable-outdevs --disable-ffserver --disable-network
    And ends with:
    check_ld cc
    check_cc
    BEGIN /var/folders/sy/2d072p1s4sdc95lpnwp6s3jh0000gn/T//ffconf.huTMXBG3.c
        1          int main(void){ return 0; }
    END /var/folders/sy/2d072p1s4sdc95lpnwp6s3jh0000gn/T//ffconf.huTMXBG3.c
    gcc -I/Volumes/Ramdisk/sw/include
    -c -o /var/folders/sy/2d072p1s4sdc95lpnwp6s3jh0000gn/T//ffconf.ZC6xNAgf.o /var/folders/sy/2d072p1s4sdc95lpnwp6s3jh0000gn/T//ffconf.huTMXBG3.c
    i686-apple-darwin11-llvm-gcc-4.2: \n: No such file or directory
    C compiler test failed.
    Any idea what's wrong now?  The compiler still seems to be wrong for this program.  This is the program for which in the past, I had to add --cc=clang - but now if I do that it just says "clang is unable . . ." instead of "gcc is unable . . ."
    The next to last line in the config.log has me puzzled though - a newline tripping it up?

  • Illustrator CS4 SDK on Apple OSX 10.6 Snowleopard and Xcode 3.2 howto

    I can't compile any of the samplecode from the current illustrator CS4 SDK
    ai_cs4_sdk_mac_367 on an Apple Mac with OSX 10.6 snow leopard (SL) and Xcode 3.2
    (see some errormessages at end)
    The documentation mentions Xcode 2.4.1.
    Is it possible at all to use this SDK 367 with snowleopard and Xcode 3.2 ?
    If not, then how do you plug-in writers update your illustrator plug-ins for working on Snowleopard ?
    thx, j.
    some of the errors I get while compiling the 'Tutorial' samplecode for "10.6|Debug|i386" are :
    ../../illustratorapi/illustrator/AIRaster.h:221: error: conflicting declaration 'typedef long unsigned int uint32'
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Security.framework/Headers/cssmco nfig.h:69: error: 'uint32' has a previous declaration as 'typedef uint32_t uint32'
    AIPlatformFileDlgOpts::AIPlatformFileDlgOpts()
    ../../illustratorapi/illustrator/AIUser.h:381: error: extra qualification 'AIPlatformFileDlgOpts::' on member 'AIPlatformFileDlgOpts'
    /Applications/ai_cs4_sdk_mac_367/Adobe Illustrator CS4 SDK/samplecode/Tutorial/Resources/Tutorial.r:20:0 SysError 0 during open of "TutorialID.h".

    thanks mrwren, for your confirmation that you could compile the
    samples from ai_cs4_sdk_mac_367. I searched further and found e.g. the following fixes:
    sample: Tutorial
    1. AIRaster.h
    below #define BRAVO_TYPES:
    //typedef unsigned long uint32;//loj outcommented
    2. AIUser.h
    /*AIPlatformFileDlgOpts:: loj commented out*/ AIPlatformFileDlgOpts()
    : fCount(0), fFilters(NULL)
    3. TutorialID.h
    add the file Tutorial.h to the Groups&Files section of the Tutorial.xcodeproj window
    by dragging it from the finder into this Groups&Files section
    (The right click > "Add > Existing Files … " did not let me do this (file was gray although rwx-access))
    I compiled for "10.6 | release | i386" and the resulting plug-in Tutorial.aip
    did load well into AI CS4 14.0.0 and worked OK.
    sample: Annotator:
    changed project settings
    -Architectures > Base SDK : "/Developers/SDKs/MacOSX10.4u.sdk" changed to "Mac OSX 10.6"
    (I installed snowleopard without the optional 10.4 support)
    -Deployment > Mac OSX target : 10.4 changed to "Mac OSX 10.6"

  • How to share a project with a non-Adobe user and present it to prospect customers?

    I Have to share my project with a person who will present it to prospect customers. I cannot ask this person to open an Adobe account. Is there a way for him to access my DPS folio and show it? Or can I export it in a way that allows to appreciate the interaction features built inside?
    Thanks!

    OK, got it. Thank you!
    2015-01-17 14:46 GMT+01:00 Bob Levine <[email protected]>:
        How to share a project with a non-Adobe user and present it to
    prospect customers?  created by Bob Levine
    <https://forums.adobe.com/people/BobLevine> in Digital Publishing Suite
    - View the full discussion
    <https://forums.adobe.com/message/7105349#7105349>

  • HT201448 How to override the default order of Websites, Wiki, and Xcode services?

    Greetings,
    On my Mac server, I have the Websites, Wiki, and Xcode services all enabled but, as detailed by the Apple support article, Xcode takes precedence over all, or Wiki if Xcode is disabled.
    What I would like to see is a virtual host (e.g. wiki.myhost.com) and/or directory alias (www.mydomain.com/xcode) that opens the home page for the respective service while the default (e.g. www.mydomain.com) goes to the home page for mydomain.com.
    I'm no httpd configuration expert but I expect some manual httpd configuration will be required.  Any help appreciated.

    At the end, I decided to adopt Firefox add-on "Classic Theme Restore"—amazing output. I guess it is impossible to get such a space saving but full furnished solution somehow else.

  • Dreamweaver CS5.5 and xcode 4.3 doesn't works?

    Hi,
    I've a new and clean apple system osx 10.7.3 with Dreamweaver CS5.5, 11.5., Build 5344, and Xcode 4.3. Xcode 4.3 doesn't works.
    Dreamweaver doesn't recognise the path anymore under Sites - Mobile Applications - Application Framework Settings.
    Any idea?
    Steve

    I noticed following: Xcode is provided in mac file manager in "Volumes". Is this normal?
    And I noticed, if I go to Xcode>Preferences>Download I find updates like iOS 4.3 Simulator.
    If I click on install button i get the message:
    "The install path </Volumes/Xcode/Xcode.app/Contents/Developer> resides on a read-only volume. If you launched Xcode from a read-only disk image, consider copying Xcode to your Applications folder and unmounting the disk image."
    Why Xcode in "Volumes" and read-only???
    Steve

  • How can i combine an array of string and an array of integers ?

    i have an array of string data [to be used as header], and an array of multiple column integer vakues;i need them together in one file. 
    Am not able to combine them so that i can write them into a single file.
    Solved!
    Go to Solution.
    Attachments:
    string file input.txt ‏1 KB
    Test build_1.vi ‏13 KB

    There are a few ways you can do this.  What I recommend is:
    Open the file
    Use the Array to Spreadsheet String to turn your headers into a single string
    Write this to the file.
    Use the Array to Spreadsheet String to turn your numeric data into a single string
    Write this to the file.
    Close the file
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How do I wrap and int array?

    Hello,
    this is my first time using the Java forum so I hope it can be helpful :)
    Im having a problem with my computer assignment at school. Here is the code im having trouble with
    private void writeObject (ObjectOutputStream out) throws IOException
         out.defaultWriteObject (); // do the default stuff
         out.writeObject (strokeColor);
         out.writeObject(xList);
         out.writeObject(yList);
         private void readObject (ObjectInputStream in) throws IOException,    ClassNotFoundException
         in.defaultReadObject (); // do the default stuff
         strokeColor = (Color) in.readObject ();
         xList = (Integer[]) in.readObject();
         yList =  (Integer[]) in.readObject();
         }In the readObject method, Im trying to restore the values of the arrays xList and yList by wrapping the data back to and integer array, but I keep getting an incompatible types error. Any suggestions?

    never mind, I just used some ArrayList objects instead and that solved the problem

  • Can't delete old developer folder: dashcode.app and xcode.app running

    I installed XCode 4.3.3 and accepted when it offered to delete the old version, XCode 4.2.1 I think.
    The Developer folder was moved to trash but unfortunately I had the file compare tool runing at the time and that's perhaps why things have become messed up.
    I shut down the file compare tool, but still when I tried to empty trash it reported that DashboardCleint.spp and xcode.app are running.
    I can't find any way of stopping them, or even seeing them listed as running applications anywhere.
    Any suggestions?
    Cheers.

    OK, yes this worked but I thought in a unix based system like MacOS there would be an way without a restart.
    Need to start getting into unix again.
    Cheers.

  • Why with last update of mevericks usb ports and xcode not works ?

    yesterday i install the last update of maverick and now i cant use the time machine, usb key and xcode
    do you have a solution for that ?

    Just waking this thread up again in case anyone has had any other ideas.
    Since last posting, usb became functional again, (came back on a couple of hours after a restart) and as long as I kept the machine alive, usb would stay alive. Bluetooth came back on briefly, but for most of the time was unavailable. System profiler shows no problems and Console does not report any usb related errors as far as I can see.
    After a recent restart, usb disappeared again, and despite numerous restarts and being left on for a couple of days (and subsequently left off for several days) it has not come back. When usb is not working, examining the system profiler (through screen sharing from my macbook) usb shows no errors, but also shows no connected devices. I can charge my ipod nano with any of the usb ports (front or back), so power does not seem to be the issue.
    I can't reset pRAM (because the keyboard is not available at boot), but have reset SMC numerous times. Have tried other keyboards, and mice. No joy.
    I seem to have run out of ideas. Any suggestions?

  • New Videos : Objective-C and Xcode Essential Training

    Disclaimer : I have no association, stand to gain from, etc. whatsoever.
    This is purely my opinion.
    For a couple of months I have searched for training videos, and have found the full spectrum, from the 3 minute very amateur YouTube, to the professional products listed below which have been excellent:
    ( 1 ) Objective-C and Xcode Essential Training
    Author : Craig Williams
    http://www.vtc.com/products/Objective-C-and-Xcode-Essential-Training-Tutorials.h tm
    ( 2 ) Bill Dudney from the Pragmatic Bookshelf
    http://www.pragprog.com/screencasts/v-mcxcode/becoming-productive-in-xcode
    http://www.pragprog.com/screencasts/v-bdobjc/coding-in-objective-c-2-0
    ( 3 ) John C Murphy
    http://www.johncmurphy.com/category.aspx?cid=97
    Before I started trying to learn Cocoa and Objective C, I had found some tutorials AppleScript ObjC
    at http://macscripter.net/viewforum.php?id=31
    As it turns out there is a fellow named "Craig Williams" from http://allancraig.net/ who had written some of the tutorials, and had always been most helpful. As it turns out, he has created a 6+ hour video course (68 lessons) on "Objective-C and Xcode Essential Training"
    Eventually I decided to try to pursue Cocoa and Objective C, and I have been trying to document and pass on what I have learned, and even if what I have learned is not much, at least it is a starting point for some people that may know a little less than me, if that is possible...
    Anyway, some feedback about :
    Objective-C and Xcode Essential Training
    Author : Craig Williams
    http://www.vtc.com/products/Objective-C-and-Xcode-Essential-Training-Tutorials.h tm
    I have gone through the "NSUserDefaults pt. 5", and it has been an awesome experience. I was going to wait until the DVD became available next month, but decided not to wait, and re-joined http://vtc.com so I could start watching the videos right away. I was already familiar with a lot of the stuff in the first few lessons, but very quickly I started learning a lot of things I didn't know. The lessons got really interesting, very quickly...
    Craig has a wonderful way of teaching, and I sincerely hope he will continue making more videos.
    I liked Bill Dudney's videos, John C. Murphy was excellent as well, but my favorite by far has been Craig Williams' videos. I am only half way through the course, and I can't wait to see the rest of the 68 lessons. He just explains stuff really well, and I am enjoying his style very much.
    Hopefully somebody else will benefit from this...
    Best Regards,
    Bill Hernandez
    Plano, Texas

    In my enthusiasm to let others know how happy I was with some of these videos, I praised Craig Williams, and rightfully deserved in my opinion.
    I was unfair in not praising the others enough. I felt badly about that, and the more I thought about it, I wanted to make it right...
    John C Murphy's videos are absolutely amazing, and he covers a lot of material. He is a really amazing individual.
    All of these wonderful contributors just have a slightly different style.
    Thank You...
    Bill Hernandez
    Plano, Texas

  • Diffrence mailbox GUID and CAS array

    What's the diffrence between Mailbox GUID and CAS Array & What's the benefit for GUID.

    Hi,
    Mailbox GUID is the property of Exchange mailbox and we can think of the mailbox GUID as the primary key for the mailbox. It is a unique value that distinguishes an individual mailbox from all others. Regardless of which Active Directory user account owns
    the mailbox, the mailbox GUID always remains the same as long as the mailbox exists.
    CAS array is an object. It includes all CAS servers in one site and is used for high availability.
    As you know, different from previous Exchange server, all Outlook clients in Exchange 2013 uses Autodiscover to create a new connection point comprised of mailbox GUID, @ symbol, and the domain portion of the user’s primary SMTP address. This is because
    that the simple change results in a near elimination of the unwelcome message of “Your administrator has made a change to your mailbox. Please restart.”
    Thanks,
    Angela Shi
    TechNet Community Support

  • Need help with applescript and Xcode 4.3.2

    I'm trying to write my first application that will involve a GUI. I can code applescript using script editor with a bit of effort, but I'm want to have users input more than one piece of information in the pop up. So, I download xcode, create my first applescript cocoa project go to MainMenu.xib and add a bunch of labels, text fields and buttons. Looks fairly nice... Go to start it and... nothing (well the window pops up, but it doesn't do anything). Unfortunately, I haven't figured out how to link the window to the applescript... So, how do I...
    * Have the applescript prepopulate data in the text fields and pulldowns
    * Once the user changes the data in the fields tell the applescript
    * Tell the window to close and pass the control back to the applescript once either the cancel or submit button is pressed.
    More detailed...
    * What's an outlet and how do I use it here? Which of the 18 outlet(s) do i use for this?
    * What's a property (referenced on one of the web pages I saw around applescript and cocoa) and do I need them here?
    Looking at the documentation with xcode, there isn't a lot about xcode and applescipt. Looking at the web, the top links are a few years old. So, links to good relevent documentation would be very nice as well as direct answers to the questions
    Thanks,
    Scott

    I'm not sure why you are closing it, but the NSApplication class is what keeps track of the windows.  If you don't want to connect the window to an outlet from the interface editor, you can use something like
    set theWindow to current application's NSApplication's sharedApplication's mainWindow()
    ...and from there you can use whatever NSWindow methods, for example
    theWindow's performClose_(me)

Maybe you are looking for

  • How to get dynamic paramete value in the context node?

    Hi, experts, There are some attributes in the node context(ee_node) that contained the attribute named "ANSSA" in the view(test_view) in the WDA for abap. In the method WDDOMODIFYVIEW of the view(test_view), there is dynamically string , ex."ANSSA".

  • Can't get in to ITunes - please help!!!!

    Have recently downloaded iTunes 7.0 and am not able to access itunes. Error message keeps saying - ITUNES COULD NOT CONNECT TO MUSIC STORE - MAKE SURE YOUR NETWORK CONNECTION IS ACTIVE. Have tried all advice listed, uninstalling and reinstalling,pop

  • Help with Page Parameters with PDK and/or PL/SQL

    Hello, I'm having difficulties get the real path of pages with PL / SQL. Another parameter that can not put the portlet in PL / SQL is the HTTP_REFERER. I read the PDK API but I could not understand how to use the HTTP_REFERER And as I get the realpa

  • MAKING A FIELD MANDATORY IN SELECTION SCREEN

    HOW TO MAKE THE SELECTION SCREEN FIELDS MANDATORY USING LOOP AT SCREEN STATEMENT.I TRIED USING IT WITH AT SELECTION SCREEN EVENT.BUT IT WAS NOT WORKING.SO CAN ANY OF U PROVIDE SAMPLE CODE FOR THIS. THANKS.

  • Disappearing ICC Printer Profiles

    I recently switched to Mac Pro with the OSX (5.7) operating system.  I also have gone from the PC version of Photoshop CS3 to Mac version of CS4.  I had ICC printer profiles for my Epson 4000 printer, which I believe were correctly installed into the