rishabh gupta
自 2018 起处于活动状态
Followers: 0 Following: 0
Feeds
提问
Not able to use function "MultiObjectTrackerKLT"
I am using MATLAB 2017a version and trying to use the function "MultiObjectTrackerKLT". But whenever i run the code, it shows t...
6 years 前 | 1 个回答 | 0
1
个回答已回答
Write a function called approximate_e that uses the following formula to compute e, Euler’s number: = 1 ! ∞ = 1+1+ 1 2 + 1 6 + 1 24 +⋯ Instead of going to infinity, the function stops at the smallest k for which the approximation differs from
This could also be done without using if condition, and it works too... function [ app_e , k ] = approximate_e( delta ) ...
Write a function called approximate_e that uses the following formula to compute e, Euler’s number: = 1 ! ∞ = 1+1+ 1 2 + 1 6 + 1 24 +⋯ Instead of going to infinity, the function stops at the smallest k for which the approximation differs from
This could also be done without using if condition, and it works too... function [ app_e , k ] = approximate_e( delta ) ...
6 years 前 | 0
提问
how can i use audioplayer command in my GUI to play an audio?
i want that when i press the play button(that i created in my GUI), a song plays. it is working fine with 'sound' command,but i ...
7 years 前 | 1 个回答 | 0
1
个回答已回答
swap columns of a matrix
you can also use: k_minus_rev = k_minus(:, [length(k_minus):-1:1])
swap columns of a matrix
you can also use: k_minus_rev = k_minus(:, [length(k_minus):-1:1])
7 years 前 | 0