Community Profile

photo

Nitish Reddy Kotkur


Last seen: 4 years ago Active since 2019

Statistics

  • Thankful Level 3

View badges

Content Feed

View by

Question


My error is the ever popular ::::Error using fprintf Invalid file identifier. Use fopen to generate a valid file identifier. Error in pro1 (line 7) fprintf(fileID,'edges\t initial_nodes\t nodes_after_reduction\t difference \n')
prompt="enter g value"; g=input(prompt);%To choose the type of graph if g == 1 fileID = fopen('output2\cycle_graph_o...

4 years ago | 1 answer | 0

1

answer

1

answer

Question


how to avoid floating point error and figure out a way to break out of this loop such that it generates correct answer
function [] = lanczos(A, m) this is a function whick takes A as input which is a matrix and reduces it to smaller size. And i ...

4 years ago | 1 answer | 0

1

answer

Question


creating a matrix in matlab using a text file
type output.txt; A = readmatrix('output.txt'); A This is the output.txt file [[1 2 2 0 0] [2 1 0 0 2] [2 0 1 2 0] [0 0...

4 years ago | 1 answer | 0

1

answer

Question


how can i give output of a python file as input to a matlab matrix
function [] = lanczos(A, m) this is a function i'm using in matlab. the parameter 'A' is matrix and i want to give input to A f...

4 years ago | 1 answer | 0

1

answer

Question


Assign a part of file name to a variable
myfolderinfo = dir('some_random_folder') ; N = length(myfolderinfo) ; for i = 3:N thisfile = myfolderinfo(i).name so...

4 years ago | 1 answer | 0

1

answer

Question


reading large text files into matrix
im trying to read a text file containing matrix A = readmatrix('output1.txt','Whitespace',' []'); when i execute it its displ...

4 years ago | 1 answer | 0

1

answer

Question


read a matrix from a text file
im trying to read a text file containing matrix A = readmatrix('output1.txt','Whitespace',' []'); when i execute it its displ...

4 years ago | 2 answers | 0

2

answers

Question


iterate through text files and read them as a matrix
myfolderinfo=dir('dense_gnm_random_graph');%dense_gnm_random_graph is the folder which contains text files N=length(myfolderinf...

4 years ago | 1 answer | 0

1

answer

Question


iterate through multiple files in a folder
function [] = lanczos(A, m) A = readmatrix('output1.txt','Whitespace',' []'); here A reads a single text file. But i wanted ...

4 years ago | 2 answers | 0

2

answers

Question


generate unit vectors based on matrix size
function [] = lanczos(A, m) A = readmatrix('output1.txt','Whitespace',' []'); [n,k] = size(A); V = zeros(k,k); %V(:,2) = ran...

4 years ago | 1 answer | 0

1

answer

Question


how to break from the following for loop when beta( J+1) become zero
for j=2:inf w = A*V(:,j) - beta(j)*V(:,j-1); alpha(j) = w'*V(:,j); w = w - alpha(j)*V(:,j); beta(j+1) = norm...

4 years ago | 1 answer | 0

1

answer