how "atestinput" could be recogrnised in matlb and how it is calculated in testing of image clasification؟
    1 view (last 30 days)
  
       Show older comments
    
I am a little bit confused. "atestinput" is not defined its value like ineger or real. how it could be recogrnised in matlb. furthermore, can someone explain me how "atestinput" calculated in testing of image clasification.  
    %Testingforward propagation 
    for i=1:numtestimages
        ytest=zeros(testoutputnodes,1);
        ytest(testlabels(i)+1,1)=1;
        for row=1:size(testimages,1)
            for columns=1:size(testimages,2)
                atestinput(columns+(row-1)*size(testimages,2),1)=testimages(row,columns,i);
            end
        end
1 Comment
  Andreas Goser
    
 on 14 Sep 2023
				In order to help you better: Can you share the code including example data so others can attempt to reproduce? And from your description, it is also not clear whether you are getting an error or if the results don't make sense.
Answers (1)
  Image Analyst
      
      
 on 14 Sep 2023
        MATLAB will automatically create/define variables using the class of the first thing assigned to them.
By the way, I would not use ,1 with vectors.  It's possible you might be confusing it to make it think you're using a 2-dimensional array.
0 Comments
See Also
Categories
				Find more on Deep Learning Toolbox in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

