Please help me fix the count for the nested for-loop
Mostrar comentarios más antiguos
function [ result ] = Clockregister01( R,count )
clc
for j = 1:count
for i = 1: size(RN,1)-1
% RN(i,1:size(RN,2)) = addHexNumber(RN(i,1:size(RN,2)),RN(i+1,1:size(RN,2)))
RN(i) = addHexNumber(RN(i),RN(i+1))
end
end
result = RN;
end
2 comentarios
madhan ravi
el 30 de Nov. de 2018
Editada: madhan ravi
el 30 de Nov. de 2018
count value?
Irwin2020
el 30 de Nov. de 2018
Respuesta aceptada
Más respuestas (1)
Categorías
Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!