photo

Prasad Reddy


Dell International

Last seen: 10 meses hace Con actividad desde 2020

Followers: 0   Following: 0

Mensaje

Programming Languages:
MATLAB
Spoken Languages:
English

Estadística

All
  • Introduction to MATLAB Master
  • Speed Demon
  • Creator
  • Knowledgeable Level 2
  • Commenter
  • Promoter
  • CUP Challenge Master
  • Community Group Solver
  • Thankful Level 1
  • Solver
  • First Answer

Ver insignias

Feeds

Ver por

Respondida
How to plot every column of matrix into a different graphic but in one figure
% let us suppose your matrix is A,and you want toplot all the columns of A with espect to dome other variable. You havent mentio...

alrededor de 4 años hace | 1

Respondida
Comparing two arrays +
clc clear all a=[10 20 30 40]; b=[20 30 30 10]; for i=1:length(a) if a(i)>=b(i) c(i)=a(i); else ...

alrededor de 4 años hace | 0

Respondida
Write a function called minimax that takes M, a matrix input argument and returns mmr, a row vector containing the absolute values of the difference between the maximum and minimum valued elements in each row. As a second output argument called mmm,
function [mmr,mmm] = minimax(M) a=max(M'); b=min(M'); mmr=a-b; c=max(a); d=min(b); mmm=c-d; end % This is what i came up...

alrededor de 4 años hace | 11

Respondida
How can we store many matrices(z) from for loop in a single matrix D(say) in my problem.
% If you want your matrices z1,z2,z3 to be stored in side by side ie D=[z1 z2 z3] the following code helps clc clear all x=[1...

alrededor de 4 años hace | 1

Respondida
Create a matrix with only the rows indexed by a multiple of N of another matrix.
clc clear all x1=randi([0,10],[9,2]) x2=[] for i=1:3:length(x1) x2=[x2; x1(i,:)] end % this will work

alrededor de 4 años hace | 1

Respondida
Fibonacci sequence with loop
clc clear all Fibonacci(1000) function fibn=Fibonacci(n) fibn=[1 1]; i=3; while fibn(i-1)<n fibn(i)=fibn(i-2)+fibn(i-...

alrededor de 4 años hace | 1

| aceptada

Respondida
Fibonacci sequence with loop
clc clear all Fibonacci(10) function fibn=Fibonacci(n) % we are defining a function Fibonacci fibn=[1 1] ...

alrededor de 4 años hace | 0

Respondida
I need help with for loops
clc clear all A = [-100 20 50 -2 -55 3 40 -27] for i = 1:length(A) if A(i) > 0 B(i) = {'true'}; else ...

alrededor de 4 años hace | 0

Respondida
I need help with for loops
clc clear all A = [-100 20 50 -2 -55 3 40 -27] B=zeros(1,length(A)) for i = 1:length(A) if A(i) > 0 B(i) = tru...

alrededor de 4 años hace | 0

Respondida
How to Log10 X and Y
clc clear all x=[1 2 3 4] y=[5 7 9 9] log10(x) log10(y) this code worked well. Your question is littel bit concusing. I...

alrededor de 4 años hace | 1

| aceptada

Respondida
How can I plot 3 variables on y axis for the same variable on x axis in one plot?
you can use " hold on " command. you can write your code in the following manner. plot(x,y1) hold on plot(x,y2) hold on pl...

alrededor de 4 años hace | 1

Pregunta


I dont understand why this function is not working.
The file cars.mat contains a table named cars with variables Model, MPG, Horsepower, Weight, and Acceleration for several classi...

alrededor de 4 años hace | 1 respuesta | 0

1

respuesta

Respondida
i need help to compelete my code
% Bro This code will work, if you have any more doubts please feel free to message me. clc clear all A=[2 1 1 3 2 3 ...

alrededor de 4 años hace | 0

Respondida
how to generate a matrix in a nested looped
% If you have any more doubts regardng this wuestion you can message me. hope you will unerstand this clc clear all rows=in...

alrededor de 4 años hace | 0

Respondida
how can ı find min value using for loop in matrice
clc clear all A=[2,4,5,7,4,3,5,6] % creating our required vector l=length(A) % finding the length of our ve...

más de 4 años hace | 0

Respondida
removing columns and rows from very large matrix
% Generally we can choose which rows and columns to be deleated. Or we can chose which columns % and rows to be present. crea...

más de 4 años hace | 0

Respondida
write m script file or create matrix
A=zeros(2,4) % creaes a 2X4 matrix of zeros B=ones(3,4) % creates a 3X4 matrix of ones. c=[A;B] % combinng thoe tw...

más de 4 años hace | 1

| aceptada

Respondida
Find number that are above a certain number.
% I have taken a random matrix M of size 8X8 in the in the place of M you can insert your matrix. % it took 3 hrs for me compl...

más de 4 años hace | 0

| aceptada

Respondida
Is there a list of MatLab tutors?
Yes .I can Tech you MATLAB. i am Assistant proessor in an university.i have been teachng MATLAB for 8 years.you can contact me m...

más de 4 años hace | 0

Respondida
solving a for loop error
In MATLAB for a vector the index start from 'one'(1) not 'zero'(0). supposeif you have a vector v=[2,4,6,3,9,7] you can axce...

más de 4 años hace | 0

Respondida
Write a function called max_sum that takes v, a row vector of numbers, and n, a positive integer as inputs. The function needs to find the n consecutive elements of v whose sum is the largest possible.
function [summa,index] = max_sum(v,n) % defining a function with name "max_sum", input augements are (v,n) and out put augemnt...

más de 4 años hace | 2