Per chi come me, non abbia seguito ultimamente le vicessitudini della piattaforma Java, ecco cosa è successo negli ultimi tempi.
È stato rilasciato JWSDP (Java Web Services Development Pack) 1.6, con supporto per WS-Security 2.0. Sono visionabili le release notes.
La nuova versione di Sun Application Server sarà open source. Il codice è già stato rilasciato, il codename del progetto è Glassfish. Includerà il supporto per EJB-3.0, il nuovo standard per i componenti distribuiti Java, attualmente in fase finale di definizione attraverso il JCP (Java Community Process). Il razionale che sta dietro questa nuova major release è la semplificazione della fase di sviluppo... speriamo in bene!...
Matlab è un ambiente destinato al calcolo numerico, alla simulazione e allo sviluppo di modelli matematici. Il linugaggio Matlab è dinamico; i tipi base non sono valori scalari, bensì matrici. Il codice è JIT-compilato, la memoria è gestita da un garbage collector.
Durante la preparazione dell'esame di Analisi 2 - presso il Politecnico di Milano - ho sviluppato questa semplice routine per il calcolo e la rappresentazione della serie di Fourier associata ad una funzione. La pubblico con la speranza che possa essere utile ad altri studenti e interessare chi non ha mai utilizzato l'ambiente Matlab.
%% DRAWFOURIER%% Definition:% function [xvalues, yvalues] = drawfourier(y, x, from, to, step, precision)%% Description:% Draws the graphic of the function y(x) and the graphic of its Fourier's% series. Requires the Symbolic Math Toolbox.% % Arguments:% y: symbolic expression of the function% x: symbolic variable rappresenting the independent variable% from: left boundary of the period% to: right boundary of the period% step: the distance beetween two points in which the series is computed% precison: the maximum index of the series% % Returned values:% xvalues: the values in the domain of the Fourier's series% yvalues: the values of the Fourier's series%% Example:% x = sym('x'); drawfourier(x^2, x, -pi, pi, 0.1, 50);%% Information:% Author: Andrea Sansottera (andrea.sansottera@fastwebnet.it)% Date: June 20th 2005% Version: 0.6% License: GPLfunction [xvalues, yvalues] = drawfourier(y, x, from, to, step, precision)% starts the stopwatchtic;% initializes the symbolic index of the seriesk = sym('k');% initializes period and pulsationt = (to - from);c = 2/t;omega = (2*pi)/t;% computes the Fourier coefficients of the seriesa0 = c * int (y, from, to);ycos = y * cos(omega*k*x);ak = c * int(ycos, from, to);ysin = y * sin(omega*k*x);bk = c * int(ysin, from, to);% defines the domain of the seriesxvalues = [from : step : to];% foreach point in the domain of the functionfor i = [1 : length(xvalues)] % computes the value of the Fourier's series yvalues(i) = subs(a0/2); for kval = 1 : precision yvalues(i) = yvalues(i) + subs(ak*cos(omega*k*x), {k, x}, {kval, xvalues(i)}); yvalues(i) = yvalues(i) + subs(bk*sin(omega*k*x), {k, x}, {kval, xvalues(i)}); endend% plots the functionezplot(y, [from, to]);% keeps the graphic on the figurehold on;% plots the Fourier's seriesplot(xvalues, yvalues, 'r');% sets the labels of the figurexlabel('x');ylabel('y');% sets the title of the figurefigure_title = sprintf('%s period = [%.2f, %.2f] step = %.2f k = [1, %d]', char(y), from, to, step, precision);title(figure_title);% displays a legendseries_label = sprintf('Fourier''s series of %s', [char(y)]);legend(char(y), series_label);% setups axisaxis([from to min(yvalues) max(yvalues)]);% stops the stopwatch and displays the elapsed timetoc;end
Ecco un esempio. Disegniamo la parabola di equazione x^2 e la sua serie di Fourier, nell'intervallo [0,...