フィルターのクリア

MATLAB Certification (associate and professional)

8 ビュー (過去 30 日間)
Martin Fevre
Martin Fevre 2014 年 12 月 30 日
編集済み: Walter Roberson 2015 年 12 月 16 日
Hi everyone,
I recently passed the Mathworks ASSOCIATE MATLAB certification exam, and my goal is to obtain the PROFESSIONAL certificate. However, I can't find any information online about this certification exam. It seems like they only propose the ASSOCIATE certification exam. Has anyone taken the professional exam? If yes, how did you register? What did you have to do? Call or email anyone?
Thank you!

回答 (3 件)

Sean de Wolski
Sean de Wolski 2014 年 12 月 30 日
  1 件のコメント
Martin Fevre
Martin Fevre 2014 年 12 月 31 日
They don't show the schedule for the professional exam. They only have the associate exam.

サインインしてコメントする。


John Kotwicki
John Kotwicki 2014 年 12 月 31 日
Congratulations on passing the exam and earning the MCMA credential! The professional-level of the program is not yet open for registration. However, you can find information about it at the web site Sean posted. Check back for updates as session, format, and preparation details are posted.
  1 件のコメント
Martin Fevre
Martin Fevre 2014 年 12 月 31 日
Thank you for your reply. Do you know when the professional exam will be open for registration? Approximately?
Regards,
Martin

サインインしてコメントする。


John BG
John BG 2015 年 12 月 15 日
編集済み: Walter Roberson 2015 年 12 月 16 日
One of the many possible answers to Problem 1 of 8, in compressed folder available online, exam questions examples available from Mathworks:
Q: given readings.txt
  1. convert timestanps into single numeric serial date numbers stored in a variable named dates.
  2. ignore the timezone component of the timestamp by not reading it into workspace.
  3. place numeric values for the readings in a single array of type double with a variable named readings.
A: my answer
fclose all
fileid=fopen('readings.txt')
frewind(fileid)
table1=textscan(fileid,'%s %s %s %s %s %s %*[^\n]','HeaderLines',1);
frewind(fileid)
frewind(fileid);readings=textscan(fileid,'%*s %*s %*s %*s %*s %*s %*s %f %*[^\n]','HeaderLines',1)
for i=1:1:10
% str1=table1{i}([1:10])'
yar=table1{1}
mnth=table1{2}
dy=table1{3}
hur=table1{4};minut=table1{5};secnd=table1{6}
str10=[cell2mat(dy(i)) '-' cell2mat(mnth(i)) '-' cell2mat(yar(i)) ' ' cell2mat(hur(i)) ':' cell2mat(minut(i)) ':' cell2mat(secnd(i))]
str11='dd-mm-yyyy HH:MM:SS'
dates(i)=datenum(str10,str11)
end
frewind(fileid)
frewind(fileid);readings=textscan(fileid,'%*s %*s %*s %*s %*s %*s %*s %f %*[^\n]','HeaderLines',1)
fclose(fileid)
Please let me know if you find any additional associate and professional exams preparation material, thanks in advance.

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by