필터 지우기
필터 지우기

how to write this in simple m file function

조회 수: 1 (최근 30일)
uncung fgv
uncung fgv 2012년 11월 19일
S=1-exp(-a.*x.*w).K);
where
a=2
x=3
K=3
i am get confuced at this part:
w=W-Wmin
w=(0:0.01:3);
  댓글 수: 2
Walter Roberson
Walter Roberson 2012년 11월 19일
Those last two items seem to contradict each other, as you are using the same variable name for both of them.
Your syntax on your first line is wrong: you end in .K) which has no operator with the period and ends in a bracket that does not match anything.
uncung fgv
uncung fgv 2012년 11월 23일
you are right i have changed it. thx.

댓글을 달려면 로그인하십시오.

채택된 답변

Pedro Villena
Pedro Villena 2012년 11월 19일
.m
function [S] = myMFile(a,x,K)
%w = W-Wmin;
w = (0:0.01:3);
S = (1-exp(-a.*x.*w).*K;

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by