how to write this in simple m file function
2 ビュー (過去 30 日間)
古いコメントを表示
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
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.
採用された回答
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 Center および File Exchange で Whos についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!