MATLAB COMPILER RELEASE NOTES Guida Utente Pagina 205

  • Scaricare
  • Aggiungi ai miei manuali
  • Stampa
  • Pagina
    / 716
  • Indice
  • SEGNALIBRI
  • Valutato. / 5. Basato su recensioni clienti
Vedere la pagina 204
Mathematics
6-15
Functionality What Happens
When You
Use This
Functionality
Use This Instead Compatibility Considerations
besseli, besselj,
besselk, and
bessely. For example,
passing a row vector
followed by a column
vector:
J= besselj(rowNu, colZ)
or passing a column
vector followed by a
row vector:
J= besselj(colNu, rowZ)
a function handle and the
mixed-orientation vectors to
bsxfun.
your code in one of two
ways:
Call meshgrid or
ndgrid to construct the
full grid first.
[nu,Z]= meshgrid(rowNu, ColZ);
J= besselj(nu, Z);
Pass a function
handle and the mixed-
orientation vectors to
bsxfun. For example,
if your existing code
passes a row vector
followed by a column
vector, make the
following change:
J= bsxfun(@besselj,
rowNu, colZ);or,
if your code passes a
column vector followed
by a row vector, make
the following change:
J= bsxfun(@besselj,
colNu', rowZ.');
Vedere la pagina 204
1 2 ... 200 201 202 203 204 205 206 207 208 209 210 ... 715 716

Commenti su questo manuale

Nessun commento