필터 지우기
필터 지우기

How can i convert my data into matrix vectors?

조회 수: 2 (최근 30일)
kentridge mantsha
kentridge mantsha 2020년 2월 26일
I am trying to calculate the Modal Assurance Criterion (MAC) using results that i have obtained experimentally against Numerical results.
Experimental data:
2741.8, 2760.5, 3006.8, 3140.8, 3422.6, 3854.6, 4424.6, 4699.4, 4922.4, 5596
Numerical data:
2721.9, 2753.8, 2989, 3122.2, 3406.3, 3846, 4409.5, 4685, 4890.5, 5566.6
  댓글 수: 3
kentridge mantsha
kentridge mantsha 2020년 2월 27일
Hi, thank you for the prompt response.I am trying to use this code to calculate and plot my Modal Assurance Criterion. see https://www.mathworks.com/matlabcentral/fileexchange/73778-modal-assurance-criterion
I have to first convert my experimental and numerical data (inputs) into matrix of mode shape vectors.
Luis Angel De La Rosa Jiménez
Luis Angel De La Rosa Jiménez 2021년 7월 29일
Hi Kentridge, did you solve your problem?, I need to generate the MAC matrix, could you help me?

댓글을 달려면 로그인하십시오.

답변 (1개)

dpb
dpb 2020년 2월 26일
dataExp=[2741.8, 2760.5, 3006.8, 3140.8, 3422.6, 3854.6, 4424.6, 4699.4, 4922.4, 5596];
dataNum=[2721.9, 2753.8, 2989, 3122.2, 3406.3, 3846, 4409.5, 4685, 4890.5, 5566.6];
or, maybe use a table or 2D array...
Need work through the Getting Started section of documentation to get the rudiments of syntax.

카테고리

Help CenterFile Exchange에서 Numeric Types에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by