Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. lovepiano25

    Can someone help me with this syntax error?

    xi = zeros(1024*655,2) counter= 1 for y = 1:1:655 for x = 1:1:1024 xi[counter,1] = x xi[counter,2] = y counter= counter+1 end end There two syntax are indicated as an error in matlab : xi[counter,1] = x; xi[counter,2] = y Can someone please help me correct this...
Back
Top