Email: helpdesk@telkomuniversity.ac.id

This Portal for internal use only!

  • My Download
  • Checkout
Application Package Repository Telkom University
All Categories

All Categories

  • Visual Paradigm
  • IBM
  • Adobe
  • Google
  • Matlab
  • Microsoft
    • Microsoft Apps
    • Analytics
    • AI + Machine Learning
    • Compute
    • Database
    • Developer Tools
    • Internet Of Things
    • Learning Services
    • Middleware System
    • Networking
    • Operating System
    • Productivity Tools
    • Security
    • VLS
      • Windows
      • Office
  • Opensource
  • Wordpress
    • Plugin WP
    • Themes WP
  • Others

Search

0 Wishlist

Cart

Categories
  • Microsoft
    • Microsoft Apps
    • Office
    • Operating System
    • VLS
    • Developer Tools
    • Productivity Tools
    • Database
    • AI + Machine Learning
    • Middleware System
    • Learning Services
    • Analytics
    • Networking
    • Compute
    • Security
    • Internet Of Things
  • Adobe
  • Matlab
  • Google
  • Visual Paradigm
  • WordPress
    • Plugin WP
    • Themes WP
  • Opensource
  • Others
More Categories Less Categories
  • Get Pack
    • Product Category
    • Simple Product
    • Grouped Product
    • Variable Product
    • External Product
  • My Account
    • Download
    • Cart
    • Checkout
    • Login
  • About Us
    • Contact
    • Forum
    • Frequently Questions
    • Privacy Policy
  • Forum
    • News
      • Category
      • News Tag

iconTicket Service Desk

  • My Download
  • Checkout
Application Package Repository Telkom University
All Categories

All Categories

  • Visual Paradigm
  • IBM
  • Adobe
  • Google
  • Matlab
  • Microsoft
    • Microsoft Apps
    • Analytics
    • AI + Machine Learning
    • Compute
    • Database
    • Developer Tools
    • Internet Of Things
    • Learning Services
    • Middleware System
    • Networking
    • Operating System
    • Productivity Tools
    • Security
    • VLS
      • Windows
      • Office
  • Opensource
  • Wordpress
    • Plugin WP
    • Themes WP
  • Others

Search

0 Wishlist

Cart

Menu
  • Home
    • Download Application Package Repository Telkom University
    • Application Package Repository Telkom University
    • Download Official License Telkom University
    • Download Installer Application Pack
    • Product Category
    • Simple Product
    • Grouped Product
    • Variable Product
    • External Product
  • All Pack
    • Microsoft
      • Operating System
      • Productivity Tools
      • Developer Tools
      • Database
      • AI + Machine Learning
      • Middleware System
      • Networking
      • Compute
      • Security
      • Analytics
      • Internet Of Things
      • Learning Services
    • Microsoft Apps
      • VLS
    • Adobe
    • Matlab
    • WordPress
      • Themes WP
      • Plugin WP
    • Google
    • Opensource
    • Others
  • My account
    • Download
    • Get Pack
    • Cart
    • Checkout
  • News
    • Category
    • News Tag
  • Forum
  • About Us
    • Privacy Policy
    • Frequently Questions
    • Contact
Home/Matlab/How to perform 2-way repeated-measures Manova using RepeatedMeasuresModel?

How to perform 2-way repeated-measures Manova using RepeatedMeasuresModel?

PuTI / 2025-02-08
How to perform 2-way repeated-measures Manova using RepeatedMeasuresModel?
Matlab News

Hi,

I’m currently stuck on performing a two-way repeated-measures Manova in Matlab using the RepeatedMeasuresModel. My data set consists of six units, from each of which I measured three properties, which might be highly correlated. Each unit was tested using two within-subject factors each of which has two levels (4 conditions in total). Thus, my data table consists of six rows and twelve columns (3 properties * 4 conditions).

I created the within-table as follows:

within = table({‘A’;’A’;’A’;’A’;’B’;’B’;’B’;’B’;’C’;’C’;’C’;’C’},…
{‘1′;’2′;’1′;’2′;’1′;’2′;’1′;’2′;’1′;’2′;’1′;’2’},…
{‘a’;’a’;’b’;’b’;’a’;’a’;’b’;’b’;’a’;’a’;’b’;’b’},…
‘VariableNames’,{‘Property’,’Condition1′,’Condition2′});

The table looks like:

Property Condition1 Condition2
________ __________ __________

‘A’ ‘1’ ‘a’
‘A’ ‘2’ ‘a’
‘A’ ‘1’ ‘b’
‘A’ ‘2’ ‘b’
‘B’ ‘1’ ‘a’
‘B’ ‘2’ ‘a’
‘B’ ‘1’ ‘b’
‘B’ ‘2’ ‘b’
‘C’ ‘1’ ‘a’
‘C’ ‘2’ ‘a’
‘C’ ‘1’ ‘b’
‘C’ ‘2’ ‘b’

The repeated-measures Model I created using

rm = fitrm(t,’M1-M12~1′,’withinDesign’,within);

where t is the data table and M1-M12 are the responses.

If I now use

manova(rm)

the output looks like this:

Statistic Value F RSquare df1 df2 pValue
_________ _______ ___ _______ ___ ___ ______

Pillai 0.54237 0 0.54237 6 0 NaN
Wilks NaN NaN NaN 6 0 NaN
Hotelling NaN NaN NaN 6 NaN NaN
Roy Inf NaN NaN 6 0 NaN

I don’t know, how I can specify, which of my within-subject factors are the different properties and which ones are the different conditions.

Help of any kind would be highly appreciated.

Best,
ChristianHi,

I’m currently stuck on performing a two-way repeated-measures Manova in Matlab using the RepeatedMeasuresModel. My data set consists of six units, from each of which I measured three properties, which might be highly correlated. Each unit was tested using two within-subject factors each of which has two levels (4 conditions in total). Thus, my data table consists of six rows and twelve columns (3 properties * 4 conditions).

I created the within-table as follows:

within = table({‘A’;’A’;’A’;’A’;’B’;’B’;’B’;’B’;’C’;’C’;’C’;’C’},…
{‘1′;’2′;’1′;’2′;’1′;’2′;’1′;’2′;’1′;’2′;’1′;’2’},…
{‘a’;’a’;’b’;’b’;’a’;’a’;’b’;’b’;’a’;’a’;’b’;’b’},…
‘VariableNames’,{‘Property’,’Condition1′,’Condition2′});

The table looks like:

Property Condition1 Condition2
________ __________ __________

‘A’ ‘1’ ‘a’
‘A’ ‘2’ ‘a’
‘A’ ‘1’ ‘b’
‘A’ ‘2’ ‘b’
‘B’ ‘1’ ‘a’
‘B’ ‘2’ ‘a’
‘B’ ‘1’ ‘b’
‘B’ ‘2’ ‘b’
‘C’ ‘1’ ‘a’
‘C’ ‘2’ ‘a’
‘C’ ‘1’ ‘b’
‘C’ ‘2’ ‘b’

The repeated-measures Model I created using

rm = fitrm(t,’M1-M12~1′,’withinDesign’,within);

where t is the data table and M1-M12 are the responses.

If I now use

manova(rm)

the output looks like this:

Statistic Value F RSquare df1 df2 pValue
_________ _______ ___ _______ ___ ___ ______

Pillai 0.54237 0 0.54237 6 0 NaN
Wilks NaN NaN NaN 6 0 NaN
Hotelling NaN NaN NaN 6 NaN NaN
Roy Inf NaN NaN 6 0 NaN

I don’t know, how I can specify, which of my within-subject factors are the different properties and which ones are the different conditions.

Help of any kind would be highly appreciated.

Best,
Christian Hi,

I’m currently stuck on performing a two-way repeated-measures Manova in Matlab using the RepeatedMeasuresModel. My data set consists of six units, from each of which I measured three properties, which might be highly correlated. Each unit was tested using two within-subject factors each of which has two levels (4 conditions in total). Thus, my data table consists of six rows and twelve columns (3 properties * 4 conditions).

I created the within-table as follows:

within = table({‘A’;’A’;’A’;’A’;’B’;’B’;’B’;’B’;’C’;’C’;’C’;’C’},…
{‘1′;’2′;’1′;’2′;’1′;’2′;’1′;’2′;’1′;’2′;’1′;’2’},…
{‘a’;’a’;’b’;’b’;’a’;’a’;’b’;’b’;’a’;’a’;’b’;’b’},…
‘VariableNames’,{‘Property’,’Condition1′,’Condition2′});

The table looks like:

Property Condition1 Condition2
________ __________ __________

‘A’ ‘1’ ‘a’
‘A’ ‘2’ ‘a’
‘A’ ‘1’ ‘b’
‘A’ ‘2’ ‘b’
‘B’ ‘1’ ‘a’
‘B’ ‘2’ ‘a’
‘B’ ‘1’ ‘b’
‘B’ ‘2’ ‘b’
‘C’ ‘1’ ‘a’
‘C’ ‘2’ ‘a’
‘C’ ‘1’ ‘b’
‘C’ ‘2’ ‘b’

The repeated-measures Model I created using

rm = fitrm(t,’M1-M12~1′,’withinDesign’,within);

where t is the data table and M1-M12 are the responses.

If I now use

manova(rm)

the output looks like this:

Statistic Value F RSquare df1 df2 pValue
_________ _______ ___ _______ ___ ___ ______

Pillai 0.54237 0 0.54237 6 0 NaN
Wilks NaN NaN NaN 6 0 NaN
Hotelling NaN NaN NaN 6 NaN NaN
Roy Inf NaN NaN 6 0 NaN

I don’t know, how I can specify, which of my within-subject factors are the different properties and which ones are the different conditions.

Help of any kind would be highly appreciated.

Best,
Christian manova, repeatedmeasures MATLAB Answers — New Questions

​

Tags: matlab

Share this!

Related posts

Is it possible to make this tiny loop faster?
2025-05-19

Is it possible to make this tiny loop faster?

Solar Wind Battery Hybrid Integration
2025-05-19

Solar Wind Battery Hybrid Integration

Why does it say “invalid email or password” when i reinstall r2023b Product
2025-05-19

Why does it say “invalid email or password” when i reinstall r2023b Product

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

Categories

  • Matlab
  • Microsoft
  • News
  • Other
Application Package Repository Telkom University

Tags

matlab microsoft opensources
Application Package Download License

Application Package Download License

Adobe
Google for Education
IBM
Matlab
Microsoft
Wordpress
Visual Paradigm
Opensource

Sign Up For Newsletters

Be the First to Know. Sign up for newsletter today

Application Package Repository Telkom University

Portal Application Package Repository Telkom University, for internal use only, empower civitas academica in study and research.

Information

  • Telkom University
  • About Us
  • Contact
  • Forum Discussion
  • FAQ
  • Helpdesk Ticket

Contact Us

  • Ask: Any question please read FAQ
  • Mail: helpdesk@telkomuniversity.ac.id
  • Call: +62 823-1994-9941
  • WA: +62 823-1994-9943
  • Site: Gedung Panambulai. Jl. Telekomunikasi

Copyright © Telkom University. All Rights Reserved. ch

  • FAQ
  • Privacy Policy
  • Term

This Application Package for internal Telkom University only (students and employee). Chiers... Dismiss