How to nest functions?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Sergey Dukman
il 14 Gen 2016
Commentato: Sergey Dukman
il 14 Gen 2016
Hello, I have a function. Then I want to create another function and use the value of the first function to compute the second one. How can I "connect" these functions?
Regards, Sergey
2 Commenti
Risposta accettata
Walter Roberson
il 14 Gen 2016
Example:
d = @(N) 23.45*(sind((360/365)*(284+N)));
N = 0:20;
B = 98.8;
C = B .* d(N);
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!