回答済み how to draw a hyperboloid?
Hi BSD,
I hope the following code will help. Reply back :-
clc;
clear all;
[X,Y,Z] = meshgrid(-10:0.5:10,-10:0....
15年弱 前 | 5
| 採用済み
回答済み Optimum Cosine Curve fits an irregular curve
Hi Asmaa,
In MATLAB there is a curve fitting toolbox that can help you this. Following are the steps :-
a) Open the curve F...
回答済み accuracy n precision
Hi
The problem with MATLAB is its precision in these cases.
You can try like this .
cosd(x * (180/pi));
% Where x is...
15年弱 前 | 0
回答済み unit vector rotation matrix
Hi,
No question is a stupid question. If you are looking to rotate an object then in that case you can do so more easily with ...
15年弱 前 | 0
| 採用済み
回答済み Command for basic fitting
Gregorz is right. Here is a bit of an example :
a= 1:0.1:10;
p = polyfit(a,exp(a),5); % Fits a fifth degree polynomial...
回答済み how to view other plane?
Hi BSD,
The question is ill-posed in the sense , that you will be able to see just a line in the Y-Z plane as the triangle l...
15年弱 前 | 0
| 採用済み
回答済み Use of Classifier
Hi,
This is a problem of K-Means Clustering. I believe you have successfully extracted the features and want to start on the a...
15年弱 前 | 0
回答済み CODE error correction
Hi ,
I don't see any reason as to why thic code should not give an error.
C is not a vector. It is a single number(or let us sa...