統計
All
Feeds
質問
Alternative to ginput for finding curve intersections with unevenly spaced data in MATLAB
Is there a better way to determine the intersection of two curves in MATLAB, other than using ginput, especially when the data p...
11ヶ月 前 | 3 件の回答 | 0
3
回答解決済み
Triangle Coordinates
Given a natural number n, return two -element vectors, x and y, containing the coordinates of a triangular arrangement of points...
約1年 前
解決済み
Angle Between Analog Clock Hands
Given a datetime variable t, return the angle (in degrees) between the hour and minute hands of an analog clock at the time repr...
約1年 前
解決済み
Determine if Input is Oddish or Evenish (Odd/Even Sum of Digits)
Given a positive integer n, determine whether n is "oddish" or "evenish" - that is, whether the sum of the digits of n is odd or...
約1年 前
解決済み
Simpson's Paradox - Calculate correlation coefficients for groups of data
Simpson's Paradox is a statistical phenomenon where groups of data can have a characteristic while the whole data set together h...
約1年 前
解決済み
Matrix Quadrants
Write a function that takes N as the input, and outputs a matrix whose upper-left (NxN) quadrant contains all ones, the lower-ri...
約1年 前
質問
Plotting Vector Field for F(x,y,z) = (x+y+z)/(x^2+y^2+z^2)^1.5
clear all [x, y, z] = meshgrid(-50:1:50,-50:1:50,-50:1:50); i = 1/(x.^2+y.^2+z.^2).^(3/2); j = 1/(x.^2+y.^2+z.^2).^(3/2); k ...
約2年 前 | 1 件の回答 | 0


