如何在MATLAB中并行运行2个不同的M文件?

时间:2015-10-14 21:29:27

标签: matlab parallel-processing

我有2个不同的M文件,想在MATLAB中并行运行它们 并在不同的屏幕上同时显示图表。

1 个答案:

答案 0 :(得分:2)

简单的解决方案:两次启动程序。

硬解决方案,前提是您有并行工具箱:spmd

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
        <TextView android:id="@+id/device_name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="24dp"/>
        <TextView android:id="@+id/device_address"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="12dp"/>
        <TextView android:id="@+id/device_uuid"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="12dp"/>
        <TextView android:id="@+id/device_major"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="12dp"/>
        <TextView android:id="@+id/device_minor"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="12dp"/>
</LinearLayout>