I am having a problem in the dialog box.

12 views (last 30 days)
n = 3
for i = 1:n
nn = inputdlg('%s.r',i, ...
'Korelasyon', [1 50])
end
% Error using inputdlg (line 108)
% NumLines size is incorrect.
% Error in hata (line 8)
% nn2 = inputdlg('%s.r',i, ...
I want to do: 1. Korelasyon

Accepted Answer

Walter Roberson
Walter Roberson on 28 Oct 2017
nn = inputdlg( sprintf('%d.',i), ...
'Korelasyon', [1 50])

More Answers (0)

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!