How can I make the dimensions agree for this function
    5 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    cakey
 am 1 Dez. 2014
  
    
    
    
    
    Kommentiert: cakey
 am 1 Dez. 2014
            f = @(x) x - exp(cos(transpose[1:4])*sum(x)); And x=[2.5;2;1.4;.9] is a column vector. when I subtract it says error Matrix dimensions must agree.
2 Kommentare
Akzeptierte Antwort
  Azzi Abdelmalek
      
      
 am 1 Dez. 2014
        
      Bearbeitet: Azzi Abdelmalek
      
      
 am 1 Dez. 2014
  
      f = @(x) x.' - exp(cos([1:4]*sum(x)))
2 Kommentare
  Azzi Abdelmalek
      
      
 am 1 Dez. 2014
				
      Bearbeitet: Azzi Abdelmalek
      
      
 am 1 Dez. 2014
  
			f = @(x) x - exp(cos([1:4]')*sum(x)); 
x=[2.5;2;1.4;.9] 
f(x)
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
			
	Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

