<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://www.hpc.unipr.it/dokuwiki/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://www.hpc.unipr.it/dokuwiki/feed.php">
        <title> - calcoloscientifico:userguide:matlab:parallel</title>
        <description></description>
        <link>https://www.hpc.unipr.it/dokuwiki/</link>
        <image rdf:resource="https://www.hpc.unipr.it/dokuwiki/lib/exe/fetch.php?media=wiki:logo.png" />
       <dc:date>2026-05-13T21:50:44+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://www.hpc.unipr.it/dokuwiki/doku.php?id=calcoloscientifico:userguide:matlab:parallel:interactive&amp;rev=1740681626&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.hpc.unipr.it/dokuwiki/doku.php?id=calcoloscientifico:userguide:matlab:parallel:non_interactive&amp;rev=1657113832&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.hpc.unipr.it/dokuwiki/doku.php?id=calcoloscientifico:userguide:matlab:parallel:slurm&amp;rev=1656586381&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://www.hpc.unipr.it/dokuwiki/lib/exe/fetch.php?media=wiki:logo.png">
        <title></title>
        <link>https://www.hpc.unipr.it/dokuwiki/</link>
        <url>https://www.hpc.unipr.it/dokuwiki/lib/exe/fetch.php?media=wiki:logo.png</url>
    </image>
    <item rdf:about="https://www.hpc.unipr.it/dokuwiki/doku.php?id=calcoloscientifico:userguide:matlab:parallel:interactive&amp;rev=1740681626&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-27T18:40:26+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>INTERACTIVE JOBS - MATLAB client on the cluster</title>
        <link>https://www.hpc.unipr.it/dokuwiki/doku.php?id=calcoloscientifico:userguide:matlab:parallel:interactive&amp;rev=1740681626&amp;do=diff</link>
        <description>INTERACTIVE JOBS - MATLAB client on the cluster

MATLAB PREREQUISITES

Verify in MATLAB that you have the Statistics and Machine Learning toolbox, Parallel computing toolbox, Optimization toolbox e FSDA toolbox installed.



Access the MATLAB ADDONS installation and download the</description>
    </item>
    <item rdf:about="https://www.hpc.unipr.it/dokuwiki/doku.php?id=calcoloscientifico:userguide:matlab:parallel:non_interactive&amp;rev=1657113832&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-07-06T13:23:52+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>MATLAB NON INTERACTIVE (SERIAL OR PARALLEL) JOBS</title>
        <link>https://www.hpc.unipr.it/dokuwiki/doku.php?id=calcoloscientifico:userguide:matlab:parallel:non_interactive&amp;rev=1657113832&amp;do=diff</link>
        <description>MATLAB NON INTERACTIVE (SERIAL OR PARALLEL) JOBS

This document provides the steps to configure MATLAB to submit non interactive jobs to the HPC cluster, retrieve results, and debug errors.

Thanks to Jonathan Murray from MathWorks for the great support and for compiling the following section.</description>
    </item>
    <item rdf:about="https://www.hpc.unipr.it/dokuwiki/doku.php?id=calcoloscientifico:userguide:matlab:parallel:slurm&amp;rev=1656586381&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-06-30T10:53:01+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>MATLAB Jobs</title>
        <link>https://www.hpc.unipr.it/dokuwiki/doku.php?id=calcoloscientifico:userguide:matlab:parallel:slurm&amp;rev=1656586381&amp;do=diff</link>
        <description>MATLAB Jobs

MATLAB parallel job

Execution of a parallel job with MATLAB


cp -p /hpc/share/samples/matlab/pi_greco_parallel.m .


Script pi_greco_parallel.m:


parpool(&#039;local&#039;);

tic
N_int=100;
N_int_0=1e2;
N_int_f=1e7;

passo=ceil((N_int_f-N_int_0)/N_int);
N=N_int_0:passo:N_int_f;
l=length(N);
res=zeros(l,1);
parfor i=1:l 
    Z=rand(2,N(i));
    res(i)=sum((Z(1,:)-0.5).^2+(Z(2,:)-0.5).^2&lt;0.5^2)/(N(i)*0.5^2);
end

disp(res(end))
toc</description>
    </item>
</rdf:RDF>
