Info

この質問は閉じられています。 編集または回答するには再度開いてください。

any suggests, solutions ?

1 回表示 (過去 30 日間)
diadalina
diadalina 2020 年 2 月 28 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
i have a set of parameters, and i want fo create a file function that containt all my parameters in order to use them in others programs, but i can't find the way to do that !

回答 (2 件)

Jeremy
Jeremy 2020 年 2 月 28 日
I changed one of them for you and re-attached it here.
  3 件のコメント
diadalina
diadalina 2020 年 2 月 29 日
but how do i call the file as the way that you have done ?
Jeremy
Jeremy 2020 年 3 月 2 日
% main file
paramteres
alternatively, if you used a script
% main file
run(paramtres)

dpb
dpb 2020 年 2 月 28 日
Jeremy is correct...
ncparamteres.m would contain:
%ncparamteres.m
% Script to create variables in the calling MATLAB workspace
nc = 500;
T = 365;
t = 0:T/(nc-1):T;
I=500;
...
% the rest shouldn't be hard to decipher... :)
Alternatively, create an Initialization routine that is run once and saves the desired variables in a .mat file -- then just load that file and all the variables will appear like magic.
  5 件のコメント
diadalina
diadalina 2020 年 2 月 29 日
i'm trying another way to solve my problem: save the parameters as file.mat and trying to load them , M Matlab gives also an error, please help me:
Subscripted assignment dimension mismatch.
Error in SysDCH (line 3)
f(1,1)=I-(Philambda+muN)*Y(1)+tau*Y(2);
Error in odearguments (line 90)
f0 = feval(ode,t0,y0,args{:}); % ODE15I sets args{1} to yp0.
Error in ode45 (line 115)
odearguments(FcnHandlesUsed, solver_name, ode, tspan, y0, options, varargin);
Error in pp (line 27)
[~,Y] = ode45(@SysDCH,t,[cD0 cDg0 cDa0 cDh0 cDcc]);
dpb
dpb 2020 年 2 月 29 日
編集済み: dpb 2020 年 2 月 29 日
PLEASE! USE THE CODE Button to format the code (or highlight the code and presse CTRL_e)
That error has nothing to do with load, you're trying to assign a RHS of the assignment that is not compatible to the LHS which says the RHS has to be one value because you wrote a subscript of (1,1) on f.
But, we have no way to know what I, Philambda, and muN are as far as their dimensions; one must presume one or more of them is not just a single value but an array or vector.
However, going clear back to your first m-file, we can see that in it
Philambda=(1-lambda)./(1+((1-lambda)/P0-1)*exp(-alpha*t));
and t was a vector so presuming the same definition still holds, Philambda is the same size as t and therefore you're trying to stuff 500 values into one location. No can do.
Use the debugger and consider what you're really doing including whether you have and want arrays or values, don't just throw code at MATLAB and then expect somebody else to figure out what's wrong.

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by