使用php在网页执行matlab
通过php调用linux命令,可以实现远程调用matlab.
试验环境:Fedora16, matlab2012b linux version, Google chrome 18.0.1025.108 beta
以下代码实现了在网页输入matlab命令并显示执行结果。注意:如果不加-nodisplay选项,会出现" no display specified"的警告,当然可以在执行matlab命令之前unset DISPLAY也可以直接在terminal执行matlab。
如果你仅仅想远程调用matlab函数,可以参考mathworks的php webservice相关文档,此处也可以参考官方关于python调用的文档。
以下代码对于plot()等绘图命令会出现{Warning: Objects of graph2d.lineseries class exist - not clearing this class or any of its super-classes}错误,目前未解决(也就是无法绘图)。但是通过ssh远程登陆服务器调用相同命令可以plot并save图像,不解。
";//$command="/usr/local/MATLAB/R2012a/bin/matlab -r "."\"".$cmd."\"";shell_exec("unset DISPLAY");//删除DISPLAY环境变量$out = shell_exec($command);$str=" Copyright 1984-2012 The MathWorks, Inc. R2012a (7.14.0.739) 32-bit (glnx86) February 9, 2012 To get started, type one of these: helpwin, helpdesk, or demo.For product information, visit www.mathworks.com.";$out=ltrim($out,$str);$out=rtrim($out,">>");echo $out;}?>
相关截图:
输入sin(1:10)进行简单计算
输入ver命令获取版本信息
直接终端运行
参考资料:
mathwork关于matlab启动参数的介绍:
http://www.mathworks.cn/help/techdoc/matlab_env/f8-4994.html
SpecifyingMATLAB Startup Options
Youcan specify startup options (also called command flags or commandline switches) that instruct the MATLAB program to perform certainoperations when you start it. On all platforms, you specify theoptions as arguments to the matlab command when you start is at theoperating system prompt. For example, the following starts MATLAB andsuppresses the display of the splash screen.
matlab-nosplash
OnWindows platforms, you can precede a startup option with either ahyphen (-) or a slash (/). For example, -nosplash and /nosplash areequivalent.
Onall platforms, you can also specify startup options using a MATLABstartup file—see Specifying Startup Options in the MATLAB StartupFile
OnWindows platforms, you can specify startup options in the MATLABshortcut—see Including Startup Options in a Shortcut on WindowsSystems.
IncludingStartup Options in a Shortcut on Windows Systems
Youcan add selected startup options (also called command flags orswitches for the command line) to the target path for your shortcutin the Windows environment for MATLAB. For more information about theoptions, see CommonlyUsed Startup Options.
Touse startup options for the MATLAB shortcut icon in a Windowsenvironment, follow these steps:
Right-clickthe shortcut icon for MATLAB
andselect Properties from the context menu. TheProperties dialog box for MATLAB opens to the Shortcut pane.
Inthe Target field,after the target path for matlab.exe,add the startup option, and click OK.For example, adding -r"filename" runsthe MATLAB code file filenameafterstartup.
Thisexample instructs MATLAB to automatically run the file results afterstartup, whereresults.m isin the startup folder or on the search path for MATLAB. The statementin the Target fieldmight appear as
<span style="color:#000000"><span style="font-family:courier new,courier,monospace">C:\Program Files\MATLAB\R2010b\bin\matlab.exe -r "results"</span></span>
Includethe statement in double quotation marks ("statement").Use only the file name, not the file extension or path name. Forexample, MATLAB produces an error when you run
<span style="color:#000000"><span style="font-family:courier new,courier,monospace">... matlab.exe -r "D:\results.m"</span></span>
Usesemicolons or commas to separate multiple statements. This examplechanges the format to short,and then runs the MATLAB code file results:
<span style="color:#000000"><span style="font-family:courier new,courier,monospace">... matlab.exe -r "format('short');results"</span></span>
Separatemultiple options with spaces. This example starts MATLAB withoutdisplaying the splash screen, and then runs the MATLAB codefile results:
<span style="color:#000000"><span style="font-family:courier new,courier,monospace">... matlab.exe -nosplash -r "results"</span></span>
SpecifyingStartup Options in the MATLAB Startup File
Atstartup, MATLAB automatically executes the file matlabrc.m and,if it exists,startup.m.The file matlabrc.m,which is in the matlabroot/toolbox/local folder,is reserved for use by MathWorks and by the system manager onmultiuser systems.
Thefile startup.m isfor you to specify startup options. For example, you can modify thedefault search path, predefine variables in your workspace, or definedefaults for Handle Graphics? objects.Use the following statements in a startup.m fileto add the specified folder, /home/username/mytools,to the search path, and to change the current folder to mytools uponstartup.
<span style="font-family:DejaVu Sans Mono,monospace"><span style="font-family:'courier new',courier,monospace"><span style="font-size:9pt">addpath /home/</span></span><tt class="western"><span style="font-family:'courier new',courier,monospace"><span style="font-size:9pt"><em>username</em></span></span></tt><span style="font-family:'courier new',courier,monospace"><span style="font-size:9pt">/mytools</span></span></span><span style="font-family:DejaVu Sans Mono,monospace"><span style="font-family:'courier new',courier,monospace"><span style="font-size:9pt">cd /home/</span></span><tt class="western"><span style="font-family:'courier new',courier,monospace"><span style="font-size:9pt"><em>username</em></span></span></tt><span style="font-family:'courier new',courier,monospace"><span style="font-size:9pt">/mytools</span></span></span>
<span style="font-size:9pt; font-family:'Times New Roman',serif"><span style="font-family:Verdana,Arial,Helvetica,sans-serif"><span style="font-size:9pt">Placethe </span></span></span><tt class="western" style="font-size:9pt"><span style="font-family:'courier new',courier,monospace"><span style="font-size:9pt">startup.m</span></span></tt><span style="font-size:9pt; font-family:'Times New Roman',serif"><span style="font-family:Verdana,Arial,Helvetica,sans-serif"><span style="font-size:9pt"> filein the default or current startup folder, which is where MATLAB firstlooks for it. For more information, see .</span></span></span>
CommonlyUsed Startup Options
Thefollowing table provides a list of some commonly used startup optionsfor both Windows and UNIX? platforms.For more information, including a complete list of startup options,see the matlab(Windows) referencepage or the matlab(UNIX) referencepage.
Platform |
Option |
Description |
---|---|---|
All |
-clicensefile |
Set LM_LICENSE_FILE to licensefile.It can have the form [email protected]. |
All |
-hor -help |
Displaystartup options (without starting MATLAB). |
All |
-logfile"logfilename" |
Automaticallywrite output from MATLAB to the specified log file. |
Windowsplatforms |
-minimize |
StartMATLAB with the desktop minimized. Any desktop tools or documentsthat were undocked when MATLAB was last closed will not beminimized upon startup. |
UNIXplatforms |
-nojvm |
StartMATLAB without loading the Sun Microsystems JVM? software. Thisminimizes memory usage and improves initial startup speed, butrestricts functionality. With nojvm,you cannot use the desktop, figures, or any tools that requireJava software. Forexample, you cannot set preferences if you start MATLAB withthe -nojvm option.However, you can start MATLAB once without the -nojvm option,set the preference, and quit MATLAB. MATLAB remembers thatpreference when you start it again, even if you usethe-nojvm option. |
All |
-nosplash |
StartMATLAB without displaying its splash screen. |
All |
-r"statement" |
Automaticallyrun the specified statement immediately after MATLAB starts. Thisis sometimes referred to as calling MATLAB in batch mode. Filesyou run must be in the startup folder for MATLAB or on the searchpath. Do not include path names or file extensions. Enclose thestatement in double quotation marks ("statement").Use semicolons or commas to separate multiple statements |
All |
-singleCompThread |
LimitMATLAB to a single computational thread. By default, Windowsmakes use of the multithreading capabilities of the computer onwhich it is running. |
PassingPerl Variables on Startup
Youcan pass Perl variables to MATLAB on startup by usingthe -r optionof the matlabfunction.For example, assume a MATLAB function test thattakes one input variable:
<span style="color:#000000"><span style="font-family:courier new,courier,monospace">function test(x)</span></span>
Tostart MATLAB with the function test,use the command
<span style="color:#000000"><span style="font-family:courier new,courier,monospace">matlab -r "test(10)"</span></span>
Onsome platforms, you might need to use double quotation marks:
<span style="color:#000000"><span style="font-family:courier new,courier,monospace">matlab -r "test(10)"</span></span>
Thiscommand starts MATLAB and runs test withthe input argument 10.
Topass a Perl variable instead of a constant as the input parameter,follow these steps.
-
Createa Perl script such as
<span style="color:#000000"> <span style="font-family:DejaVu Sans Mono,monospace"><span style="font-family:courier new,courier,monospace"><span style="font-size:12px; font-size:9pt">#!/usr/local/bin/perl</span></span></span></span><span style="color:#000000"> <span style="font-family:DejaVu Sans Mono,monospace"><span style="font-family:courier new,courier,monospace"><span style="font-size:12px; font-size:9pt">$val = 10; </span></span></span></span><span style="color:#000000"> <span style="font-family:DejaVu Sans Mono,monospace"><span style="font-family:courier new,courier,monospace"><span style="font-size:12px; font-size:9pt">system('matlab -r "test(' . ${val} . ')"');</span></span></span></span>
Invokethe Perl script at the prompt using a Perl interpreter.
Formore information, see the matlab(Windows) or matlab(UNIX) referencepage.
Startupand Calling Java Software from the MATLAB Program
Whenthe MATLAB program starts, it constructs the class path for SunMicrosystems Java software using librarypath.txt aswell as classpath.txt.If you call Java software from MATLAB, see more about this in TheJava Class Path and LocatingNative Method Libraries inthe MATLAB External Interfaces documentation.
===============================================================================================================================
http://narnia.cs.ttu.edu/drupal/node/41
RunningMATLAB without graphic interface
Interactiveover SSH
StartMATLAB using the command:
<span style="color:#222222"><span style="font-family:Helvetica,sans-serif"><span style="font-size:12px">matlab -nodisplay -nojvm</span></span></span>
Runninga MATLAB script over SSH
Inthis case, you don't even need a MATLAB Prompt to interact with.
<span style="color:#222222"><span style="font-family:Helvetica,sans-serif"><span style="font-size:12px">matlab -nodisplay -nojvm -r a_code > matlab.out</span></span></span>
YourMATLAB program should have the file name <span style="color:#222222"><span style="font-family:Helvetica,sans-serif"><span style="font-size:12px; font-size:10pt">a_code.m</span></span></span>
(youcan change it to whatever name you like. But when you tell MATLAB torun it, omit the <span style="color:#222222"><span style="font-family:Helvetica,sans-serif"><span style="font-size:12px; font-size:10pt">.m</span></span></span>
suffix.)The <span style="color:#222222"><span style="font-family:Helvetica,sans-serif"><span style="font-size:12px; font-size:10pt">>matlab.out</span></span></span>
partredirects the output to a file rather than showing on your Linux/MacOS X terminal. This way is preferred because you have a record onwhat is happening.
Runninga MATLAB script with input variables over SSH
First,go to the directory containing the MATLAB script that defines thefunction (or, fancier, add that directory into MATLAB PATH byediting your MATLABPATH environment variable or pathdef.m file).Then, run like this
<span style="color:#222222"><span style="font-family:Helvetica,sans-serif"><span style="font-size:12px">matlab -nodisplay -nojvm -r "my_function(10)"</span></span></span>
Again,you can redirect the output to a file.
Youcan also write a Shell, Perl or Python script to do so. MATLAB givesan example using Perlat http://www.mathworks.com/help/techdoc/matlab_env/f8-4994.html
OnSun Grid Engine (SGE)-powered cluster
Writea job script below and submit it using <span style="color:#222222"><span style="font-family:Helvetica,sans-serif"><span style="font-size:12px; font-size:10pt">qsub</span></span></span>
<span style="color:#222222"><span style="font-family:Helvetica,sans-serif"><span style="font-size:12px">#!/bin/sh</span></span></span><span style="color:#222222"><span style="font-family:Helvetica,sans-serif"><span style="font-size:12px">#$ -V</span></span></span><span style="color:#222222"><span style="font-family:Helvetica,sans-serif"><span style="font-size:12px">#$ -cwd</span></span></span><span style="color:#222222"><span style="font-family:Helvetica,sans-serif"><span style="font-size:12px">#$ -S /bin/bash</span></span></span><span style="color:#222222"><span style="font-family:Helvetica,sans-serif"><span style="font-size:12px">#$ -N matlab</span></span></span><span style="color:#222222"><span style="font-family:Helvetica,sans-serif"><span style="font-size:12px">#$ -o $JOB_NAME.o$JOB_ID</span></span></span><span style="color:#222222"><span style="font-family:Helvetica,sans-serif"><span style="font-size:12px">#$ -e $JOB_NAME.e$JOB_ID</span></span></span><span style="color:#222222"><span style="font-family:Helvetica,sans-serif"><span style="font-size:12px">#$ -q normal </span></span></span><span style="color:#222222"><span style="font-family:Helvetica,sans-"></span></span>

“你的组织要求你更改PIN消息”将显示在登录屏幕上。当在使用基于组织的帐户设置的电脑上达到PIN过期限制时,就会发生这种情况,在该电脑上,他们可以控制个人设备。但是,如果您使用个人帐户设置了Windows,则理想情况下不应显示错误消息。虽然情况并非总是如此。大多数遇到错误的用户使用个人帐户报告。为什么我的组织要求我在Windows11上更改我的PIN?可能是您的帐户与组织相关联,您的主要方法应该是验证这一点。联系域管理员会有所帮助!此外,配置错误的本地策略设置或不正确的注册表项也可能导致错误。即

Windows11将清新优雅的设计带到了最前沿;现代界面允许您个性化和更改最精细的细节,例如窗口边框。在本指南中,我们将讨论分步说明,以帮助您在Windows操作系统中创建反映您的风格的环境。如何更改窗口边框设置?按+打开“设置”应用。WindowsI转到个性化,然后单击颜色设置。颜色更改窗口边框设置窗口11“宽度=”643“高度=”500“>找到在标题栏和窗口边框上显示强调色选项,然后切换它旁边的开关。若要在“开始”菜单和任务栏上显示主题色,请打开“在开始”菜单和任务栏上显示主题

默认情况下,Windows11上的标题栏颜色取决于您选择的深色/浅色主题。但是,您可以将其更改为所需的任何颜色。在本指南中,我们将讨论三种方法的分步说明,以更改它并个性化您的桌面体验,使其具有视觉吸引力。是否可以更改活动和非活动窗口的标题栏颜色?是的,您可以使用“设置”应用更改活动窗口的标题栏颜色,也可以使用注册表编辑器更改非活动窗口的标题栏颜色。若要了解这些步骤,请转到下一部分。如何在Windows11中更改标题栏的颜色?1.使用“设置”应用按+打开设置窗口。WindowsI前往“个性化”,然

您是否在Windows安装程序页面上看到“出现问题”以及“OOBELANGUAGE”语句?Windows的安装有时会因此类错误而停止。OOBE表示开箱即用的体验。正如错误提示所表示的那样,这是与OOBE语言选择相关的问题。没有什么可担心的,你可以通过OOBE屏幕本身的漂亮注册表编辑来解决这个问题。快速修复–1.单击OOBE应用底部的“重试”按钮。这将继续进行该过程,而不会再打嗝。2.使用电源按钮强制关闭系统。系统重新启动后,OOBE应继续。3.断开系统与互联网的连接。在脱机模式下完成OOBE的所

任务栏缩略图可能很有趣,但它们也可能分散注意力或烦人。考虑到您将鼠标悬停在该区域的频率,您可能无意中关闭了重要窗口几次。另一个缺点是它使用更多的系统资源,因此,如果您一直在寻找一种提高资源效率的方法,我们将向您展示如何禁用它。不过,如果您的硬件规格可以处理它并且您喜欢预览版,则可以启用它。如何在Windows11中启用任务栏缩略图预览?1.使用“设置”应用点击键并单击设置。Windows单击系统,然后选择关于。点击高级系统设置。导航到“高级”选项卡,然后选择“性能”下的“设置”。在“视觉效果”选

在Windows11上的显示缩放方面,我们都有不同的偏好。有些人喜欢大图标,有些人喜欢小图标。但是,我们都同意拥有正确的缩放比例很重要。字体缩放不良或图像过度缩放可能是工作时真正的生产力杀手,因此您需要知道如何对其进行自定义以充分利用系统功能。自定义缩放的优点:对于难以阅读屏幕上的文本的人来说,这是一个有用的功能。它可以帮助您一次在屏幕上查看更多内容。您可以创建仅适用于某些监视器和应用程序的自定义扩展配置文件。可以帮助提高低端硬件的性能。它使您可以更好地控制屏幕上的内容。如何在Windows11

屏幕亮度是使用现代计算设备不可或缺的一部分,尤其是当您长时间注视屏幕时。它可以帮助您减轻眼睛疲劳,提高易读性,并轻松有效地查看内容。但是,根据您的设置,有时很难管理亮度,尤其是在具有新UI更改的Windows11上。如果您在调整亮度时遇到问题,以下是在Windows11上管理亮度的所有方法。如何在Windows11上更改亮度[10种方式解释]单显示器用户可以使用以下方法在Windows11上调整亮度。这包括使用单个显示器的台式机系统以及笔记本电脑。让我们开始吧。方法1:使用操作中心操作中心是访问

1获取鼠标在全屏位置屏幕左上角为坐标原点,获取鼠标位置和获取鼠标像素颜色建议和while循环或者timer函数结合使用:importjava.awt.MouseInfo;mousepoint=MouseInfo.getPointerInfo().getLocation();mousepoint=[mousepoint.x,mousepoint.y]2获取当前剪切板内容importjava.awt.Toolkitimportjava.awt.datatransfer.DataFlavorclip=


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

螳螂BT
Mantis是一个易于部署的基于Web的缺陷跟踪工具,用于帮助产品缺陷跟踪。它需要PHP、MySQL和一个Web服务器。请查看我们的演示和托管服务。

VSCode Windows 64位 下载
微软推出的免费、功能强大的一款IDE编辑器

Dreamweaver Mac版
视觉化网页开发工具

SublimeText3 英文版
推荐:为Win版本,支持代码提示!

记事本++7.3.1
好用且免费的代码编辑器