如何使用不具有相同列和线的矩阵进行平滑绘图

时间:2016-05-23 13:01:36

标签: matlab

我是MATLAB的新手,因此我不了解该语言的许多方面和功能。

我有这些矩阵

var app = angular.module('myApp', []);
app.controller("myCtrl", function($scope){
    $scope.firstname = "Johny";
    $scope.changeValue = function(param) {  
        $scope.firstname = param;
    }
});

<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.5/angular.min.js"></script>    <link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
</head>

<body>
  <div id="someDiv" ng-app="myApp" ng-controller="myCtrl">
    <p ng-bind="firstname"></p>
    <button type="button" ng-click="changeValue('Joe')">Click</button>
  </div>
</body>

</html>

所以当我作为命令发表时

Z = [60:5:165];
Vmetr = [10;2.2;0.1;2.7;10;0;2.3;10;0.1;1.9;10;0.6;1.1;10;1.3;0.5;10;2;0;10;2.6;0];

我得到以下图表enter image description here

我希望第二个情节得到平滑和曲线,并一直到plot(Z,Vmetr,'r.','Markersize',18),hold on plot(Z,Vmetr) 。 那么如何创建这个图形的平滑和弯曲版本,保持现在的点?

0 个答案:

没有答案