how to find symprod for double type values if i take it as seperate function. I am getting this error Undefined function 'symprod' for input arguments of type 'double'. Error in practise (line 5) y=symprod(x,j,1,3);
    3 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    MAMATHA YADAVALLI
 le 3 Avr 2018
  
    
    
    
    
    Réponse apportée : Steven Lord
    
      
 le 3 Avr 2018
            function y= practise(k)
 k=2;
 x=(rand(4)).*k;
 syms j;
 y=symprod(x,j,1,3);
end
0 commentaires
Réponse acceptée
Plus de réponses (1)
  Steven Lord
    
      
 le 3 Avr 2018
        You want to compute the product of the elements of x? If that's the case, don't use symprod. There are no symbolic calculations necessary. Just use the prod function instead.
0 commentaires
Voir également
Catégories
				En savoir plus sur Calculus dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


