i am getting error when i am reading file

2 visualizzazioni (ultimi 30 giorni)
siddhanth madhavan
siddhanth madhavan il 25 Ott 2021
%the program%
a = csvread('matrix.csv');
b = csvread('vector.csv');
disp(a);
disp(b);
n = length(b)
x = zeros(n,1)
aug = [a b]
for j = 1 : n-1
for i = j+1 : n
m = aug(i,j)/aug(j,j);
aug(i,:) = aug(i,:)-m*aug(j,:);
end
end
aug
x(n) = aug(n,n+1)/aug(n,n);
for k = n-1: -1 : 1
x(k) = aug(k,n+1)-aug(k,k+1:n)*x(k+1:n) / aug(k,k);
end
x
%the error i get%
The optional second input to exist must be 'var', 'builtin', 'class', 'dir' or 'file'.
Error in csvread (line 34)
if exist(filename,'vector') ~= 2
Error in eva2gausseliminationmethod (line 1)
a = csvread('matrix.csv');
  4 Commenti
siddhanth madhavan
siddhanth madhavan il 25 Ott 2021
this is what its returning
siddhanth madhavan
siddhanth madhavan il 25 Ott 2021
in my progran its not reding the file which i have

Accedi per commentare.

Risposte (1)

Sobha T
Sobha T il 25 Ott 2021
Please try using readmatrix() instead.
https://in.mathworks.com/help/matlab/ref/csvread.html
  2 Commenti
siddhanth madhavan
siddhanth madhavan il 25 Ott 2021
Error using readmatrix (line 146)
Unable to find or open 'matrix.csv'. Check the path and filename or file permissions.
Error in eva2gausseliminationmethod (line 1)
a = readmatrix('matrix.csv');
siddhanth madhavan
siddhanth madhavan il 25 Ott 2021
i am still getting this error

Accedi per commentare.

Community Treasure Hunt

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

Start Hunting!

Translated by