如何打开mat文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何打开mat文件相关的知识,希望对你有一定的参考价值。

mat数据格式是matlab的数据存储的标准格式。
你可以调用matlab的子程序库,用c或fortan调用mat格式的数据。
我给你几个函数名
matopen 打开mat文件
matclose 关闭mat文件
magetfp 取得mat文件的c语言句柄
matGetArray 取得一个数组
具体内容看联机文档
参考技术A 文件类型1:V-Ray
MaterialsFileMac
OSMAXON
CINEMA
4D
with
Chaos
Group
V-Ray
pluginAutodesk
Maya
with
Chaos
Group
V-RaypluginWindowsAutodesk
3ds
Max
with
Chaos
Group
V-Ray
pluginAutodesk
Maya
with
Chaos
Group
V-RaypluginCaligari
trueSpace7
with
Chaos
GroupV-Ray
pluginMAXON
CINEMA
4D
with
Chaos
Group
V-Rayplugin Linux文件类型2:Microsoft
AccessTable
Shortcut
File打开.mat文件Mac
OSWindowsMicrosoft
Access
2007 Linux文件类型3:Vue
Material
File打开.mat文件Mac
OSE-on
Vue WindowsE-on
Vue Linux.mat文件类型4:MATLAB
MAT-File打开.mat文件Mac
OSThe
MathWorks
MATLABWindowsThe
MathWorks
MATLABFMJ-Software
Awave
Studio Linux

mat-sidenav 在页面加载时打开。我该如何关闭它?

【中文标题】mat-sidenav 在页面加载时打开。我该如何关闭它?【英文标题】:mat-sidenav is open when the page loads. How do I close it? 【发布时间】:2018-11-12 07:25:55 【问题描述】:

mat-sidenav 在页面加载时打开。如何关闭它?

这是我的 HTML:

<mat-sidenav
    #drawer
    class="sidenav" position="end"
    fixedInViewport="true"
    [attr.role]="(isHandset$ | async) ? 'dialog' : 'navigation'"
    [mode]="(isHandset$ | async) ? 'over' : 'side'"
    [opened]="!(isHandset$ | async)">
    <mat-toolbar color="warn">Menu</mat-toolbar>
    <mat-nav-list>
      <a mat-list-item [routerLink] = "['/brands']"> Brands </a>
      <a mat-list-item [routerLink] = "['/variants']"> Variants </a>
    </mat-nav-list>
</mat-sidenav>

另外,当我单击页面中的任意位置时,我希望它关闭(打开时)。目前只有当我点击菜单按钮时它才会关闭。

【问题讨论】:

【参考方案1】:

你可以试试它对我很有效

<mat-nav-list>
  <a mat-list-item [routerLink] = "['/brands']" (click)="drawer.close()"> Brands </a>
  <a mat-list-item [routerLink] = "['/variants']" (click)="drawer.close()"> Variants </a>
</mat-nav-list>

【讨论】:

【参考方案2】:

试试下面的,

<mat-sidenav-container class="sidenav-container">
  <mat-sidenav
    #drawer
    class="sidenav"
    fixedInViewport="true"
    [attr.role]="(isHandset$ | async) ? 'dialog' : 'navigation'"
    [mode]="(isHandset$ | async) ? 'over' : 'side'"
    [opened]="!(isHandset$ | async)">
    <mat-toolbar color="warn">Menu</mat-toolbar>
    <mat-nav-list>
      <a mat-list-item [routerLink] = "['/brands']"> Brands </a>
      <a mat-list-item [routerLink] = "['/variants']"> Variants </a>
    </mat-nav-list>
  </mat-sidenav>
  <mat-sidenav-content>
    <mat-toolbar color="primary">
      <button
        type="button"
        aria-label="Toggle sidenav"
        mat-icon-button
        (click)="drawer.toggle()"
        *ngIf="isHandset$ | async">
        <mat-icon aria-label="Side nav toggle icon">menu</mat-icon>
      </button>
      <span>Application Title</span>
    </mat-toolbar>
  </mat-sidenav-content>
</mat-sidenav-container>

【讨论】:

以上是关于如何打开mat文件的主要内容,如果未能解决你的问题,请参考以下文章

MAT格式的文件如何打开

如何打开MATLAB里的后缀名为mat的文件?

如何在不使用 MATLAB 的情况下打开 .mat 文件?

如何打开未使用 -v7.3 标志保存的大型 .mat 文件?

matlab 中如何打开文件

matlab中,如何将.txt格式文件转换成.mat格式文件