converting a function into a code ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
maryam 94
am 18 Dez. 2014
Bearbeitet: Stephen23
am 20 Dez. 2014
hello everyone i'm struggling with this question (sin(x), exp(x^2-y^2), 0) how do i convert the whole thing into a matlab code ? and how can i use matlab to find the "curl" of a function ?
0 Kommentare
Akzeptierte Antwort
Stephen23
am 19 Dez. 2014
Bearbeitet: Stephen23
am 20 Dez. 2014
If the x and y values are defined, then the beauty of MATLAB is there there is not really much then you need to do to convert this to MATLAB code: it can read (almost) like the mathematical operations that you want to perform!
x = 1:10;
y = sin(x);
z = exp(x.^2-y.^2)
If this is tricky, then you should find some tutorials online on how to start in MATLAB.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Text Data Preparation finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!