How to save in n different variables string data separated by comma

조회 수: 1 (최근 30일)
Hi everybody.
I need help please. Anyone know how can I save string number composed by 2 columns and n rows in 2 different variables?. For example in the first iteration, the string is like the following:
RX='0.036,0.029'
I expect the algorithm divide the string until the comma then create the variables A and B with the coefficients data:
A=0.036
B=0.029
Thanks

채택된 답변

A. Sawas
A. Sawas 2019년 4월 9일
% RX='0.036,0.029'
v = sscanf(RX, '%g,%g');
A = v(1);
B = v(2);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Identification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by