photo

Nitish Reddy Kotkur


Last seen: 거의 6년 전 2019년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

12 질문
0 답변

순위
96,399
of 301,060

평판
0

참여
12 질문
0 답변

답변 채택
50.0%

획득한 표
0

순위
 of 21,165

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 172,612

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Thankful Level 3

배지 보기

Feeds

보기 기준

질문


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...

거의 6년 전 | 답변 수: 1 | 0

1

답변

질문


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')
if g == 1 fileID = fopen('output2\cycle_graph_output.txt','w')%Creates a output text file in folder output2 ...

거의 6년 전 | 답변 수: 1 | 0

1

답변

질문


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 ...

6년 초과 전 | 답변 수: 1 | 0

1

답변

질문


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...

6년 초과 전 | 답변 수: 1 | 0

1

답변

질문


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...

6년 초과 전 | 답변 수: 1 | 0

1

답변

질문


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...

6년 초과 전 | 답변 수: 1 | 0

1

답변

질문


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...

6년 초과 전 | 답변 수: 1 | 0

1

답변

질문


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...

6년 초과 전 | 답변 수: 2 | 0

2

답변

질문


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...

6년 초과 전 | 답변 수: 1 | 0

1

답변

질문


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 ...

6년 초과 전 | 답변 수: 2 | 0

2

답변

질문


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...

6년 초과 전 | 답변 수: 1 | 0

1

답변

질문


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...

6년 초과 전 | 답변 수: 1 | 0

1

답변