Statistiques
2 Questions
0 Réponses
RANG
183 058
of 301 995
RÉPUTATION
0
CONTRIBUTIONS
2 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
100.0%
VOTES REÇUS
0
RANG
of 21 486
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 177 989
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
How can I get the return of a constructed function as an array?
The constructed function is function [a] = triangle(n) a=zeros(size(n)); if (n>=0 & n<=pi) % use an if else statement...
plus de 3 ans il y a | 1 réponse | 0
1
réponseQuestion
How can I construct a triangle function, when I tested one using 'integral(fun.-pi,pi)', error occurred.
function [a] = triangle(n) a=zeros(size(n)); a(n>=0 & n<=pi)=pi-n; end -------------------- >> fun = @(x)triangle(x) ...
plus de 3 ans il y a | 1 réponse | 0
