필터 지우기
필터 지우기

questdlg box variable prompt

조회 수: 3 (최근 30일)
Tomas
Tomas 2012년 4월 28일
Hello, is it possible to make the number of prompts variable? E.g.
a=4;
prompt={'1','2','3','4'} %input count depends on a.
title=('title');
v=questdlg(prompt, title, 1);
c(a,1)=str2num(v{1},v{2},v{3},v{4})

채택된 답변

Walter Roberson
Walter Roberson 2012년 4월 28일
prompt = cellstr(num2str((1:a).'));
Please note the .' of the 1:a vector: it is required in order to for num2str() to work properly for this situation.

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by