How do I input a variable that contains a previous variable?
Afficher commentaires plus anciens
The input for my function requires a letter "d" after a variable that I calculate, as shown below. I can't get it to work because I don't know the syntax for the code.
function [S0,S1,S2,S3] = calcStokes(n)
full_name = fullfile('I0R', n);
full_name2 = full_named;
I0value = I0(full_name2,full_name);
disp(I0value)
Above is the code that requires 2 inputs, one with the a name "n" and one with a name "nd"
Réponse acceptée
Plus de réponses (1)
Azzi Abdelmalek
le 25 Juil 2015
Modifié(e) : Azzi Abdelmalek
le 25 Juil 2015
function y=myfcn(n)
persistent nd
if isempty(nd)
nd=0
end
y=2*n+nd
nd=n
3 commentaires
Sulaiman Alvi
le 25 Juil 2015
Modifié(e) : Sulaiman Alvi
le 25 Juil 2015
Azzi Abdelmalek
le 25 Juil 2015
This is not clear
Sulaiman Alvi
le 25 Juil 2015
Catégories
En savoir plus sur Variables dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!