command window is not working

4 ビュー (過去 30 日間)
Bhavana
Bhavana 2024 年 5 月 8 日
編集済み: Mann Baidi 2024 年 5 月 8 日
clc;
x=input("Enter the array of x:");
y = input("Enter the array of y:");
n = length(x)
d=zeros(n,n)
for i=1:n
d(i,1)=y(i)
end
for j=2:n
for i=j:n
d(i,j)=d(i,j-1)-d(i-1,j-1);
end
end
fprintf("Difference table\n")
disp(d)
  1 件のコメント
Ganapathi Subramanian R
Ganapathi Subramanian R 2024 年 5 月 8 日
Could you please elaborate the issue you are facing?

サインインしてコメントする。

回答 (1 件)

Mann Baidi
Mann Baidi 2024 年 5 月 8 日
編集済み: Mann Baidi 2024 年 5 月 8 日
I am assuming here that you are facing issue while taking an array as an input from the user using the command window.
For taking user input as an array the syntax is in the form of '[x y z a b c]'.
Otherwise, If you know the length of the input array you can use a 'for' loop for taking the user input for each element in the array.

カテゴリ

Help Center および File ExchangeProgramming Utilities についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by