How can i solve the " Subscripted assignment dimension mismatch. Error in fi2 (line 12) u(:,1)= -sin(pi.*x) " ?
2 次查看(过去 30 天)
显示 更早的评论
here is the code :
a = input('Insert the value of a: ');
CFL = input('Insert the value of CFL: ');
dx = input('Insert the value of dx: ');
dt = (CFL * dx)/ abs(a);
lambda = (dt/dx)
tf = input('Insert final time : ');
N = input('Insert the value of N: ');
x = linspace(-1,1,N);
%choose test case:
tc= input('choose test case number : ');
if tc == 1
u(:,1)= -sin(pi.*x)
0 个评论
采纳的回答
ME
2017-12-11
I have just run this code in R2016a and it did not produce an error when I chose a random set of input parameters. Was there a specific set of input parameters that produce this issue for you?
4 个评论
ME
2017-12-11
Just tried again after inputting the parameters you suggested with tc=1 and did not get the error.
Apologies for asking a stupid question but in your script I assume you have the 'end' that is missing from the code in your problem description?
Also, is there supposed to be more code after the below lines? If not then your script produces no u array unless tc=1.
if tc == 1
u(:,1)= -sin(pi.*x)
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!