Using the answer of inputdlg into a Matlab Expression

조회 수: 2 (최근 30일)
Alessandro
Alessandro 2013년 4월 30일
편집: MoeIsKing 2018년 11월 14일
Hello everybody,
I am trying to write some piece of code which asks for the name of a previously defined variable and uses the answer in some calculations. Everything works fine when I use 'input' to ask for that name. But I want to use the 'inputdlg' command. The problem is that 'inputdlg' returns user input in a cell array. I tried converting the cell with 'str2double' but that only works for numbers (won't work when trying to convert the name of the variable!). This is the piece of code:
Source = inputdlg('Name given to the vector containing the sample: ');
Fs = inputdlg('Sampling Frequency: '); % Sampling frequency
Fs = str2double(Fs);
Source = str2double(Source(1,1));
T = 1/Fs; % Sample time
L = length(Source); % Length of signal
t = (0:L-1)*T; % Time vector
NFFT = 2^nextpow2(L); % Next power of 2 from length of y
Y=fft(Source,NFFT)/L;
  댓글 수: 2
Azzi Abdelmalek
Azzi Abdelmalek 2013년 4월 30일
What is the error message?
Alessandro
Alessandro 2013년 4월 30일
편집: Alessandro 2013년 4월 30일
For example, if the vector I want to select is 'A', 'Source' vector will be composed of a single entry 'A' instead of being equal to the original vector. Note this does not happen when using 'input' command instead of 'inputdlg'.

댓글을 달려면 로그인하십시오.

답변 (2개)

Azzi Abdelmalek
Azzi Abdelmalek 2013년 4월 30일
Use
Source = char(Source)
  댓글 수: 2
Alessandro
Alessandro 2013년 4월 30일
That doesn't work as well, because the so-created Source is a char-type array containing 1 entry instead of being set equal to the vector specified in the inputdlg box.
Alessandro
Alessandro 2013년 4월 30일
This helped anyways. By using
Source = eval(char(Source(1,1)))
i got it to work. Not very elegant, but it's still something. Thanks!

댓글을 달려면 로그인하십시오.


MoeIsKing
MoeIsKing 2018년 11월 14일
편집: MoeIsKing 2018년 11월 14일
Source = eval(char(inputdlg())) helps
THANKS

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by