Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6002605
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T01:00:10+00:00 2026-05-23T01:00:10+00:00

I have two different types of dicom(medical imaging files) in the same folder. I

  • 0

I have two different types of dicom(medical imaging files) in the same folder. I want to sort them into two different arrays one for the SE006 and the other for the SE014.

    MR-ST001-SE006-0001.dcm... MR-ST001-SE006-0021.dcm  
    MR-ST001-SE014-0001.dcm... MR-ST001-SE014-0013.dcm 

I have been using something like this code below but it is wrong I think I have some syntax errors.

  if image == 'MR-ST001-SE006-%4.4.dcm'
      SE006(end+1) = image 
  if image == 'MR-ST001-SE014-%4.4.dcm'
      SE014(end+1) = image 

Anyone have any tips to help improve this so it works?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T01:00:11+00:00Added an answer on May 23, 2026 at 1:00 am

    You can read all the files into a cell array with DIR command and then use CELLFUN to vectorize the solution from @jonsca.

    files = dir('MR-ST001-SE*.dcm');
    dcmnames = {files(:).name}';
    idx06 = ~cellfun(@isempty,strfind(dcmnames,'SE006'));
    idx14 = ~cellfun(@isempty,strfind(dcmnames,'SE014'));
    SE006 = dcmnames(idx06);
    SE014 = dcmnames(idx14);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two different buttons on my page. I want them both to be
I have two different arrays, one with strings and another with ints. I want
I have two different list types. I need to remove the elements from list1
I have two tables which are used to store details of different types of
Can I contain two different types in a collection? For example, can I have
I have an activity which uses two Loaders. Each of them returns different type
I have two different libGL libraries on the same Ubuntu 11.04 machine. One library
If I have two types of documents to index, and I'm using two different
Is it possible to have an array that contains two different types of data?
I have two different types of WCF clients in my test environment sending a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.