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

  • SEARCH
  • Home
  • 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 6983663
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T18:26:55+00:00 2026-05-27T18:26:55+00:00

I have the following data structure (stored as CSV): Sub Cond Pic Vals s101

  • 0

I have the following data structure (stored as CSV):

Sub Cond Pic Vals  
s101 A pic1 [1,3,5,1,-2,5]  
s101 A pic2 [1,-2,5,0,2,1]  
s101 B pic1 [2,4,7,0,1,-3]  
s101 B pic2 [3,-1,1,1,6,1]  
s102 A pic1 [1,7,7,3,-1,5]  
s102 A pic2 [2,8,7,0,3,-4]  

…etc

I want to loop through subjects and conditions to correlate the value vectors between pic1 and pic2.

In python, I’d organize these as a list of dictionaries, but I’m not sure what the analogous/optimal structure is in MATLAB. What is the best way to import and organize these data in MATLAB?

  • 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-27T18:26:56+00:00Added an answer on May 27, 2026 at 6:26 pm

    For instance, you can do something like that:

    xp.txt:

    Sub Cond Pic Vals  
    s101 A pic1 [1,3,5,1,-2,5]  
    s101 A pic2 [1,-2,5,0,2,1]  
    s101 B pic1 [2,4,7,0,1,-3]  
    s101 B pic2 [3,-1,1,1,6,1]  
    s102 A pic1 [1,7,7,3,-1,5]  
    s102 A pic2 [2,8,7,0,3,-4]
    

    matlab script:

    nValue=6; %%%%% or 90
    vals=cell(1,nValue);   
    [sub cond pic vals{:}]=textread('xp.txt',['%s %s %s [%f' repmat(',%f',1,nValue-1) ']'],'headerlines',1)
    vals=horzcat(vals{:})
    for s = unique(sub)'
      for c = unique(cond)'
         index=(strcmp(sub,s{1})&strcmp(cond,c{1}));
         display(['sub: ' s{1} '; cond: ' c{1} ])
         resu1=vals(index & strcmp(pic,'pic1'),:)
         resu2=vals(index & strcmp(pic,'pic2'),:)
         %%%% computation of the correlation
      end
    end
    

    result:

    sub: s101; cond: A
    resu1 =
         1     3     5     1    -2     5
    resu2 =
         1    -2     5     0     2     1
    sub: s101; cond: B
    resu1 =
         2     4     7     0     1    -3
    resu2 =
         3    -1     1     1     6     1
    sub: s102; cond: A
    resu1 =
         1     7     7     3    -1     5
    resu2 =
         2     8     7     0     3    -4
    sub: s102; cond: B
    resu1 =
       Empty matrix: 0-by-6
    resu2 =
       Empty matrix: 0-by-6
    

    PS:

    There are also many other possibilities depending on what you want

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following data structure (a list of lists) [ ['4', '21', '1',
I have something like the following data structure: Category StartDateTime EndDateTime =============================================== 1 12/1/2009
I have an odd linq subquery issue. Given the following data structure: Parents Children
I have the following casting problem when my data structure sSpecificData contains a field
I have following structure with example data: id season_id title 1 1 Intro 2
If I have a requirement to create a data structure that has the following
I have a table emp with following structure and data: name dept salary -----
I have the following directory structure: +-archive +-a +-data.txt +-b +-data.txt +-incoming +-a +-data.txt
Let's say we have a solution with the following structure: Project.DAL - Data access
I have an XML structure like the following: <tables> <table name=tableName1> <row ID=34 col1=data

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.