问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

matlab中function 函数怎么用?

发布网友 发布时间:2022-04-22 21:46

我来回答

5个回答

热心网友 时间:2023-06-21 11:33

问题描述:例如在命令窗口中 function
Number=recrgb(Image,Image_HSV,h,w)电脑就会提示:Function
业,但是在我的机子上运行的时候,我的matlab不认识load函数,我
很郁闷,我是2007的版本,你的如果版本高,应该可以认识load函数
件和所用图片放到matlab运行时所在的文件夹中,然后在command
window里运行Main即可,但是还有一点,因为你的程序处理的是mat格
式的数据。所以得把图片转化成mat格式。这部分代码我给你写,如
下:x=imread('pself2_51.jpg');save
FinalPosition.mat;这样就可以把图片保存成mat格式了。
版,应该能吧,
答案2:: M函数除了直接用函数名调用之外,也可以进行参数传
递,使得Matlab应用更加方便。M函数文件以function开头,格式为
function 输出变量 = 函数名称(输入变量)语句;例
如:%eg_1f.mfunction s=f(m)s=0for n=1:ms=s+1/n/n;end
保存为eg_1f.m,然后在指命窗口执行;;eg_1f(100)ans =
1.6350
答案3:: 你要新建一个script,把函数输进去,然后调用它就好了
recrgb(Image,Image_HSV,h,w) 追问 不好意思,我是新手,再麻
烦下,新建script输入函数后,是直接在命令窗口输入
recrgb(Image,Image_HSV,h,w)这个吗? 回答 把你上面这段复制到
script里面就好了
:::::::::::::::::::请参考以下相关问题::::::::::::::::::::
:::::::::::::::::::请参考以下相关问题::::::::::::::::::::
:::::::::::::::::::请参考以下相关问题::::::::::::::::::::
:::::::::::::::::::请参考以下相关问题::::::::::::::::::::
:::::::::::::::::::请参考以下相关问题::::::::::::::::::::

热心网友 时间:2023-06-21 11:33

m文件函数是Matlab中的子函数,其格式为:function[输出参数列表]=函数名(输入参数列表)函数体举个例子,编写一个求自变量X的正弦值的m函数,如下:function y=mysin(x)y=sin(x);% 函数体此时在Matlab命令窗口输入若下内容时>>x=pi/2;>>y=mysin(x)Matlab便会调用y.m文件子函数,计算sin值,并给出结果为>>y=1例子有点简单,自己琢磨编写更强大的函数吧,注学习快乐!你觉得有帮助,别忘了采纳(⊙o⊙)哦!]

热心网友 时间:2023-06-21 11:34

用.m文件来定义就行了: 比如:function y=num(a,b); y=a+b; 定义好后,保存为mum_1.m文件 比如你要计算2+3;就直接在command window里面输入num_1(2+3)=就行了;]

热心网友 时间:2023-06-21 11:34

M函数除了直接用函数名调用之外,也可以进行参数传递,使得Matlab应用更加方便。M函数文件以function开头,格式为function 输出变量 = 函数名称(输入变量)语句;例如:%eg_1f.mfunction s=f(m)s=0for n=1:ms=s+1/n/n;end保存为eg_1f.m,然后在指命窗口执行>>eg_1f(100)ans = 1.6350]

热心网友 时间:2023-06-21 11:35

输入:help function就会出现帮助! FUNCTION Add new function. New functions may be added to MATLAB's vocabulary if they are expressed in terms of other existing functions. The  commands and functions that comprise the new function must be put in a file whose name defines the name of the new  function, with a filename extension of '.m'. At the top of the file must be a line that contains the syntax definition for the new function. For example, the existence of a file  on disk called STAT.M with:  function [mean,stdev] = stat(x) %STAT Interesting statistics. n = length(x); mean = sum(x) / n; stdev = sqrt(sum((x - mean).^2)/n);  defines a new function called STAT that calculates the  mean and standard deviation of a vector. The variables within the body of the function are all local variables. See SCRIPT for proceres that work globally on the work- space.   A subfunction that is visible to the other functions in the same file is created by defining a new function with the FUNCTION keyword after the body of the preceding function or subfunction. For example, avg is a subfunction within the file STAT.M:  function [mean,stdev] = stat(x) %STAT Interesting statistics. n = length(x); mean = avg(x,n); stdev = sqrt(sum((x-avg(x,n)).^2)/n);  %------------------------- function mean = avg(x,n) %AVG subfunction mean = sum(x)/n;  Subfunctions are not visible outside the file where they are defined. Normally functions return when the end of the function is reached. A RETURN statement can be used to force an early return.  See also script, return, varargin, varargout, nargin, nargout,  inputname, mfilename. Reference page in Help browser doc function]
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
有什么做南昌粉蒸肉的秘制配方分享? 泸州市教育局电话? 貂皮大衣需要防虫吗 转环怎么造句 门把手怎么造句 苏宁易购的好友暗号最新的794472 最新的苏宁易购好友暗号,暗号:203018,手机端对暗号可得十元劵,2014年... 一会儿造句 近义词 教教我霎时怎么造句子 短时间怎么造句 matlab中的function的用法 matlab 运行function函数怎么操作 matlab用function定义函数是什么? 关于MATLAB中function函数使用问题 请问MATLAB怎样调用function函数? 如: matlab里function怎么用 matlab中function函数的具体用法 MATLAB中函数function是怎么用的? matlab 中function的用法 matlab中function函数怎么用,为什么出错 matlab的function函数怎么用? windows中都有那些类型的文件?他们具体的含义是什么? matlab函数function怎么使用 windows这个文件夹里都是什么 function在MATLAB中怎么用? C:\WINDOWS\Win.ini是什么文件?有什么用的? windows.h是什么文件?包含什么内容? winre.wim是什么文件谢谢了,大神帮忙啊 什么是Windows的文件夹? 海尔液晶电视红屏、兰屏、绿屏和白屏不停的交替出现,请问什么原因?_百度问一问 matlab中FUNCTION功能 matlab中 function怎么用啊? MATLAB用function定义一个函数后,怎么让这个函数生效? 华为手机哪个系列拍照最强大? 苹果4 刷机后,变成这样的了,已经安装了SIM,还是不行呀,为啥?谁知道? 苹果4刷机后固件不合怎样再安装 iphone4刷机怎么办 苹果4手机刷机后激活显示激活出错怎么办 扬子空气能e4什么故障 扬子空调柜机显示E4 扬子空调出现“e4”代码是怎么回事,要怎么维修? 扬子空调出现e4怎么回事?怎么维修 扬子空调现E4是什么意思 扬子空调出现系统保护E4是怎么回事? 扬子空调柜机上显示E4是什么原因? 扬子空调3p柜机显示E4 扬子空调内机显示E4.还可以继续用吗 扬子空调出现E4是怎么回事 扬子空调E4代码怎么维修 杨子空调E4什么情况