如何用MATLAB在等腰直角三角形相图中作出溶解度曲线和辅助线?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用MATLAB在等腰直角三角形相图中作出溶解度曲线和辅助线?相关的知识,希望对你有一定的参考价值。
参考技术A 我不会matlab做,学校做实验实验报告要作等边三角形相图,在origin中做了,很简单。来自:求助得到的回答 参考技术A 没明白说什么...我要补语文课了看来用js写输出星号直角三角形的代码
参考技术A <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html>
<head>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="utf-8"%>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>document</title>
<script>
function paint(ul, n)
for (var i = 0; i < n; i++)
var newchild = document.createElement("li");
var str = '';
for (var j = 0; j < 2 * i - 1; j++)
str += '*';
newchild.innerHTML = str;
ul.appendChild(newchild);
function run()
var ul = document.getElementById("test");
ul.style.listStyle = 'none';
var len=document.getElementById("length");
paint(ul, len.value);
alert("done");
;
</script>
</head>
<body>
<input id="length" type="text" placeholder="输入边长"></input>
<input type="button" value="generate" onclick="run();"/>
<ul id="test">
</ul>
</body>
</html>
以上是关于如何用MATLAB在等腰直角三角形相图中作出溶解度曲线和辅助线?的主要内容,如果未能解决你的问题,请参考以下文章