not displaying eval in command window

조회 수: 8 (최근 30일)
Nidhal Bouzouita
Nidhal Bouzouita 2021년 11월 29일
답변: Chunru 2021년 11월 29일
Hello dear readers,
i am using this code
for i =1 : length (signal_names)
ImportedSignals = genvarname(cell2mat(signal_names(i)), who);
eval([ImportedSignals ' = signals.(cell2mat(signal_names(i))).data']);
end
each time the eval is executed , i got the result alsso in the command window , how can i get rid of it ? i mean i dont want to display those results on the command window , what should i add in the code ?
thanks in advance for your help

채택된 답변

Chunru
Chunru 2021년 11월 29일
Try this:
for i =1 : length (signal_names)
ImportedSignals = genvarname(cell2mat(signal_names(i)), who);
eval([ImportedSignals ' = signals.(cell2mat(signal_names(i))).data;']);
% semicolon here ^
end

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by